1
我有一個UICollectionView包含10個部分,每個部分有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]];
我只是想刪除單元格或部分與細胞。我的錯誤是什麼?
它現在正在工作......非常感謝你@Jackos。但是這是刪除一個部分,可以刪除一個部分內的單元格? – onivi
奇怪。數據源協議中有兩種方法: - collectionView:numberOfItemsInSection:和 - numberOfSectionsInCollectionView :.首先用於某些部分的設定數量的單元格,其次是需要設定的部分數量。也許你從錯誤的數組中刪除對象? :) – Josshad
我有10個部分,每個部分有2個單元格。我想單獨刪除每個單元格,但是當某個單元格中的每個單元格都被刪除後,我想刪除這一部分。 – onivi