作为标题,我如何重新加载collectionView的最后一个indexPath。
我发现解决方案是使用collectionView.reloadItems(at: [indexPath])
方法,但我不知道如何在at: [indexPath]
中编写代码。感谢您的帮助,感谢您的贡献!
答案 0 :(得分:1)
您只需要最后一项的索引路径。
let indexPath = IndexPath(item: lastItem, section: lastSection)
collectionView.reloadItems(at: [indexPath])
我留给您确定lastItem
和lastSection
的值,因为您尚未提供任何详细信息。但是这些值应该基于驱动集合视图的数据模型中的数据。