1
在Objective-C中,如何在UICollectionView的第一個位置插入單元格?我有圖片的集合,我想添加一個拍照鍵作爲第一個項目如何在UICollectionView的第一個位置插入單元格?
在Objective-C中,如何在UICollectionView的第一個位置插入單元格?我有圖片的集合,我想添加一個拍照鍵作爲第一個項目如何在UICollectionView的第一個位置插入單元格?
是的,你可以通過這種添加在集合視圖中的第一位置的單元:
[self.collectionView performBatchUpdates:^{
NSDate *newDate=[NSDate date];
[datesArray insertObject:newDate atIndex:0];
[self.collectionView insertItemsAtIndexPaths:@[[NSIndexPath indexPathForItem:0 inSection:0]]];
} completion:nil];
的可能的複製[如何插入單元格在UICollectionVIew編程?](http://stackoverflow.com/questions/15572462/how-to-insert-cell-in-uicollectionview-programatically) –