在Objective-C中,如何在UICollectionView的第一个位置插入一个单元格?我有一组图像,我想添加一个相机按钮作为第一项
答案 0 :(得分:0)
是您可以在集合视图的第一个位置添加单元格:
[self.collectionView performBatchUpdates:^{
NSDate *newDate=[NSDate date];
[datesArray insertObject:newDate atIndex:0];
[self.collectionView insertItemsAtIndexPaths:@[[NSIndexPath indexPathForItem:0 inSection:0]]];
} completion:nil];