在某些事件,如何刪除所有項目並將新項目添加到UICollectionView?
我想除去所有細胞在uicollectionview,並添加新的細胞。(將填充作爲網絡調用的結果)
我嘗試使用deleteItemsAtIndexPaths。 reloadSections,deleteSections/insertSections。
他們每個人都撞我的應用程序。
以下是我的代碼。
NSMutableArray* indexPathArray = [[NSMutableArray alloc] init];
for(int i=0; i < [self.jsonAlbumImageArray count]; ++i)
{
NSIndexPath* newPath = [NSIndexPath indexPathForRow:i inSection:0];
[indexPathArray addObject: newPath];
}
[self.jsonAlbumImageArray removeAllObjects];
if(indexPathArray.count > 0)
{
[self.collectionView performBatchUpdates:^{
[self.collectionView deleteItemsAtIndexPaths:indexPathArray];
}
completion: nil];
}
// NSIndexSet *indexSet = [NSIndexSet indexSetWithIndexesInRange:NSMakeRange(0, 1)];
// NSIndexSet* indexSet = [NSIndexSet indexSetWithIndex:0];
// [self.collectionView reloadSections:indexSet];
[self get_IMAGE_LIST_FROM_SERVER];
使用'[的CollectionView reloadData]' –