10 個のセクションを含む UICollectionView があり、各セクションには 2 つのセルがあります。セルを削除しようとしていますが、これを取得しています:
The number of sections contained in the collection view after the update (2) must be equal to the number of sections contained in the collection view before the update (2)
これは私が削除する方法です:
NSUInteger arrayLength = 1;
NSUInteger integerArray[] = {0,0};
NSIndexPath *aPath = [[NSIndexPath alloc] initWithIndexes:integerArray length:arrayLength];
[self.collectionFavs deleteItemsAtIndexPaths:[NSArray arrayWithObject:aPath]];
セルまたはセルを含むセクションを削除したいだけです。私の間違いは何ですか?