gpt4 book ai didi

UICollectionView 的 iOS 字母滚动

转载 作者:可可西里 更新时间:2023-11-01 02:59:45 27 4
gpt4 key购买 nike

我有一个 Collection View ,其中显示了人物及其姓名的多个图像,并且我已经实现了搜索和排序功能。但是,问题是我也想要按字母顺序排列,但是 Collection View 没有像 UITableView 那样的委托(delegate)方法。

- (NSArray *)sectionIndexTitlesForTableView:(UITableView *)tableView {
return[NSArray arrayWithObjects:@"a", @"e", @"i", @"m", @"p", nil];
}

- (NSInteger)tableView:(UITableView *)tableView sectionForSectionIndexTitle:(NSString
*)title atIndex:(NSInteger)index {
return <yourSectionIndexForTheSectionForSectionIndexTitle >;
}

我试过这个question也,但这显示了一个部分中的 Collection View 单元格。我不想要多个部分。我只想要部分并实现按字母顺序滚动的功能。

以上方法不在 UICollectionViewDelegate 方法中。

最佳答案

BDKCollectionIndexView实现一个类似于 UITableView 的部分索引栏。一旦将它定位在屏幕上,集成就非常容易:只需从数据源分配一个 NSString 数组:

self.indexView.indexTitles = self.fetchResultsController.sectionIndexTitles;

关于UICollectionView 的 iOS 字母滚动,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24365701/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com