我试图像联系人和Apple Music中的滚动条一样创建一个按字母顺序排列的滚动条。但是,当我调用sectionIndexTitlesForTableView
方法时,字母滚动条不显示。我该如何解决?我引用了此older tutorial和newer tutorial。
代码
class SongsViewController: UIViewController, UITableViewDelegate, UITableViewDataSource {
private var sectionTitles = ["A", "B", "C"]
func sectionIndexTitlesForTableView(tableView: UITableView) -> [AnyObject]! {
return sectionTitles as [AnyObject]
}
func tableView(_ tableView: UITableView, sectionForSectionIndexTitle title: String, at index: Int) -> Int {
return sectionTitles.index(of: title)!
}
}
答案 0 :(得分:2)
您的教程适用于早期版本的Swift。当前的功能签名是:
func sectionIndexTitles(for tableView: UITableView) -> [String]? {
return sectionTitles
}
func tableView(_ tableView: UITableView, sectionForSectionIndexTitle title: String, at index: Int) -> Int {
return sectionTitles.index(of: title)!
}