0
我正在嘗試使聯繫人和Apple音樂中滾動條的按字母順序滾動條。但是,當我撥打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)!
}
}