字母滚动条不显示

时间:2017-07-09 01:01:30

标签: ios swift uitableview indexing

我试图像联系人和Apple Music中的滚动条一样创建一个按字母顺序排列的滚动条。但是,当我调用sectionIndexTitlesForTableView方法时,字母滚动条不显示。我该如何解决?我引用了此older tutorialnewer 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)!
    }
}

1 个答案:

答案 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)!
}