Method: Xcodeproj::Project::ObjectList#clear
- Defined in:
- lib/xcodeproj/project/object_list.rb
#clear ⇒ void
This method returns an undefined value.
Removes all the objects contained in the list and updates their reference counts.
136 137 138 139 140 141 |
# File 'lib/xcodeproj/project/object_list.rb', line 136 def clear objects.each do |object| perform_deletion_operations(object) end super end |