我有一个UICollectionView几乎按要求工作,但我想要帮助的是一种重新加载集合视图的内容但保留标题位置的方法,但....集合视图不是直接向前,因为我已经实现了添加粘性标头功能的UICollectionViewFlowLayout。集合视图布局如下:
------------------
| Header 0 | < Section 0, Header Yes, Content No, Footer No
------------------
| Header 1 | < Section 1, Header Yes, Content Yes, Footer No
------------------
| |
| Contents |
| |
------------------
标题2是粘滞标题,停在视图的顶部,其中包含用户可以选择然后更新内容的按钮。目前,数据源已更新,集合视图重新加载,然后刷新视图,以便标题1变为可见。
我认为reloadSections可能有帮助吗?
[self.collectionView reloadSections:[NSIndexSet indexSetWithIndex:1]];
欢迎任何想法或建议。