我的应用程序中有一个collectionView,我只想重新加载集合视图的第一个单元格。 我怎样才能重新加载UICollectionView的第一个单元格?
答案 0 :(得分:0)
您可以使用reloadItemsAtIndexPaths:
UICollectionView
方法重新加载第一个单元格。
第一个单元格的索引路径是行:0部分:0。
NSIndexPath提供了一种创建具有行和节的方法:indexPathForRow:inSection:
。
所以重新加载第一个单元格的方法是:
[youCollectionView reloadItemsAtIndexPaths:@[[NSIndexPath indexPathForRow:0 inSection:0]]];
答案 1 :(得分:0)
以上是正确的但不是行的索引路径。它是项目
的索引路径答案 2 :(得分:0)
collectionView.reloadItems(at:[IndexPath(row:0,section:0)])