使用 View 的indexPathForItemAtPoint,我将获得单元格的索引路径,但不会获得UICollectionReusableView(页眉/页脚),因为它始终返回nil。

最佳答案

您应该创建自己的字典,将索引路径映射到标题 View 。在您的collectionView:viewForSupplementaryElementOfKind:atIndexPath:方法中,将 View 放入字典中,然后再返回。在collectionView:didEndDisplayingSupplementaryView:forElementOfKind:atIndexPath:中,从字典中删除 View 。

关于ios - 如何获取UICollectionView header 的索引路径?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/15104862/

10-10 13:57