iOS Swift - 使用UILocalizedIndexedCollat​​ion在TableView中显示联系人

时间:2016-08-21 06:27:25

标签: ios swift

// MARK:UITableViewDelegate

override func tableView(tableView: UITableView, titleForHeaderInSection section: Int) -> String {
    print("titleForHeaderInSection: \(collation.sectionTitles[section])")
    return collation.sectionTitles[section]
}

override func sectionIndexTitlesForTableView(tableView: UITableView) -> [String] {
    print("sectionIndexTitlesForTableView: \(collation.sectionIndexTitles)")
    return collation.sectionIndexTitles
}

override func tableView(tableView: UITableView, sectionForSectionIndexTitle title: String, atIndex index: Int) -> Int {
    print("sectionForSectionIndexTitle: \(sections.count)")
    return collation.sectionForSectionIndexTitleAtIndex(index)
}

override func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
    return (self.results.count > 0) ? self.results.count : 0
}

override func numberOfSectionsInTableView(tableView: UITableView) -> Int {
    let numberOfSections = UILocalizedIndexedCollation.currentCollation().sectionTitles.count
    print("numberOfSections: \(numberOfSections)")
    return numberOfSections
}

override func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
    let cell:UITableViewCell = tableView.dequeueReusableCellWithIdentifier("contactscell") as UITableViewCell!
    let label             =   cell.viewWithTag(1) as? UILabel
    label?.text           =   self.results[indexPath.row].givenName
    return cell
}

显示每个部分中的所有联系人。我想按字母顺序索引a到z

按排序顺序显示联系人

1 个答案:

答案 0 :(得分:0)

您在numberOfRowsInSection中返回self.results.count,无论您在哪个部分。您必须返回每个字母的行数。考虑使用字母作为键和联系人作为值的字典。