gpt4 book ai didi

ios - UITableView SectionIndexTitle 自定义 View

转载 作者:行者123 更新时间:2023-11-30 13:34:07 25 4
gpt4 key购买 nike

我已经用 google 搜索了大约 2 天来解决我的问题。但我找不到任何与我的问题相匹配的解决方案。我的问题是我想为 UITableView 制作一个自定义的SectionIndexTitle,如下图所示。请向我推荐任何库或概念来做到这一点。谢谢。 enter image description here

最佳答案

如果您尝试创建字母索引,UITableViewDelegate 中有一个开箱即用的支持它的方法。

您需要定义您的部分,然后使用 UILocalized​Indexed​Collat​​ion 为它们建立索引。

 let collation = UILocalizedIndexedCollation.currentCollation()
as UILocalizedIndexedCollation

// table sections
var sections: [Section] {
if self._sections != nil {
return self._sections!
}

// create objects from your datasource
var objects: [Object] = names.map { objectAttribute in
var object = Object(objectAttribute: objectAttribute)
object.section = self.collation.sectionForObject(object, collationStringSelector: objectAttribute)
return object
}

// create empty sections
var sections = [Section]()
for i in 0..<self.collation.sectionIndexTitles.count {
sections.append(Section())
}

override func sectionIndexTitlesForTableView(tableView: UITableView)
-> [AnyObject] {
return self.collation.sectionIndexTitles
}

override func tableView(tableView: UITableView,
sectionForSectionIndexTitle title: String,
atIndex index: Int)
-> Int {
return self.collation.sectionForSectionIndexTitleAtIndex(index)
}

了解更多关于UILocalized​Indexed​Collation的信息

关于ios - UITableView SectionIndexTitle 自定义 View ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36273281/

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