class Xcodeproj::Project::ObjectList

def delete_at(index)

Returns:
  • (AbstractObject, ObjectDictionary, Nil) - the object if found.

Parameters:
  • from (Fixnum) --
def delete_at(index)
  object = at(index)
  perform_deletion_operations(object)
  super
end