gpt4 book ai didi

ios - UITableView sectionForSectionIndexTitle 从未在 swift 3 中调用

转载 作者:行者123 更新时间:2023-12-01 19:58:21 24 4
gpt4 key购买 nike

enter image description here

由于我是 Swift 的新手,所以我陷入了困境。我正在开发一个应用程序,我想在其中显示侧面索引部分,就像在联系人应用程序中一样。我在我的应用程序中使用了此代码

func tableView(_ tableView: UITableView, sectionForSectionIndexTitle title: String, at index: Int) -> Int{
print(sections.index(of:title)!)
return sections.index(of:title)!
}

但是这个方法永远不会被调用,并且 TableView 没有显示侧面索引部分。我正在使用 Swift 3。任何帮助将不胜感激。

我有一个表格 View ,现在在哪个国家/地区列表中我想通过选择部分索引(A..Z)来关注特定部分。我已经实现了上面的代码,但没有显示部分索引。

最佳答案

经过长时间的研究得到了解决方案,我犯了一个愚蠢的错误。要专注于选定部分,我们需要使用此代码在选定部分滚动 tableView。

你可以在这里看到完整的代码:https://github.com/ipraba/EPContactsPicker/blob/master/Pods/EPContactsPicker.swift

override open func tableView(_ tableView: UITableView, sectionForSectionIndexTitle title: String, at index: Int) -> Int {
// if resultSearchController.isActive { return 0 }
tableView.scrollToRow(at: IndexPath(row: 0, section: index), at: UITableViewScrollPosition.top , animated: false)
return sections.index(of: title)!
}

关于ios - UITableView sectionForSectionIndexTitle 从未在 swift 3 中调用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41264032/

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