我怎样才能重新加载Swift中collectionView的最后一个indexPath?

时间:2018-05-18 03:54:34

标签: swift uicollectionview

作为标题,我如何重新加载collectionView的最后一个indexPath。 我发现解决方案是使用collectionView.reloadItems(at: [indexPath])方法,但我不知道如何在at: [indexPath]中编写代码。感谢您的帮助,感谢您的贡献!

1 个答案:

答案 0 :(得分:1)

您只需要最后一项的索引路径。

let indexPath = IndexPath(item: lastItem, section: lastSection)
collectionView.reloadItems(at: [indexPath])

我留给您确定lastItemlastSection的值,因为您尚未提供任何详细信息。但是这些值应该基于驱动集合视图的数据模型中的数据。