Deletes the items at the specified index paths.
SDK
- macOS 10.11+
Framework
- App
Kit
Declaration
Parameters
indexPaths
A set of
NSIndex
objects, each of which includes a section and item index corresponding to the insertion point of a single item. SpecifyingPath nil
for this parameter raises an exception.
Discussion
After removing items from your data source object, use this method to synchronize those changes with the collection view. Calling this method lets the collection view know that it must update its internal data structures and possibly update its visual appearance. In response, the collection view asks the layout object to update the positions of the remaining objects. If the layout object indicates that there are changes to the visible items, the collection view animates the affected items into place.
When inserting or deleting multiple sections and items, you can animate all of your changes at once using the perform
method.