removeChildCollections(at:)
Removes the child collections at the specified indexes from the collection list.
Declaration
func removeChildCollections(at indexes: IndexSet)Parameters
- indexes:
The indexes of the child collections to be removed from the collection list.
Discussion
To ensure that the index set you specify is valid even if the collection list has changed since you fetched it, create a change request with a snapshot of the collection list’s contents using the init(for:childCollections:) method before removing child collections. To remove objects based on their identities (without regard to their indexes in the collection), use the removeChildCollections(_:) method.