作者:开着宝马X6去赶集_692 | 来源:互联网 | 2023-01-05 13:38
作为问题,我正在尝试在集合视图中添加"索引标题",以便快速导航我的UIColletionView的内容.
我读过,从iOS的10方法,如启动indexTitles(for:)
和collectionView(_:indexPathForIndexTitle:at:)
可以帮助我在作为UITableViews.但我没有得到任何结果!你有没有弄清楚如何使用这些方法?在此先感谢您的帮助.
1> nambatee..:
如果你看UICollectionView.h
,indexTitlesForCollectionView
只有tvos可用:
/// Returns a list of index titles to display in the index view (e.g. ["A", "B", "C" ... "Z", "#"])
- (nullable NSArray *)indexTitlesForCollectionView:(UICollectionView *)collectionView API_AVAILABLE(tvos(10.2));
您可能已经阅读了Apple的文档,其中指出indexTitle方法适用于iOS 10.3+和tvOS 10.2+:https://developer.apple.com/documentation/uikit/uicollectionviewdatasource/2851455-indextitles
我尝试在iOS上实现它,它只是不起作用,这让我相信他们在文档中犯了错误.