如何使用Core Data按部分按字母顺序对tableView中的数据进行排序?

时间:2017-07-01 11:21:11

标签: ios swift uitableview swift3 tableview

我是Swift 3编码的新手。 我试图从iPhone“复制”手机应用程序,但是当在单元格中显示数据时我遇到了一些问题,它们没有出现(当显然有些数据存在时,从Core Data类中恢复)。 Core Data类包含一个Contact,其中包含一些属性,如“firstName”,“lastName”,“phoneNumber”等。我在X.xcdatamodeld中创建了它。那些属性 在另一个VC中设置并保存在那里。 我希望在单元格中显示的是每个联系人的firstName按字母顺序按部分排序,如电话应用程序。 这是我到目前为止所拥有的。

extension Contact {
var titleFirstLetter: String {
    return String(firstName![firstName!.startIndex]).uppercased()
 }
}

class MainTableViewController: UITableViewController {
var listOfContacts = [Contact]() 
var sortedFirstLetters: [String] = []
var sections: [[Contact]] = [[]]

struct Storyboard {
    static let cellIdentifier = "Cell"
    static let showDetailIdentifier = "showDetail"
    static let showInformationIdentifier = "showInformationVC"
}

 override func viewDidLoad() {
    super.viewDidLoad()

    tableView.delegate = self
    tableView.dataSource = self

    let firstLetters = listOfContacts.map { $0.titleFirstLetter }

    let uniqueFirstLetters = Array(Set(firstLetters))

    sortedFirstLetters = uniqueFirstLetters.sorted()
    sections = sortedFirstLetters.map { firstLetter in
        return listOfContacts.filter { $0.titleFirstLetter == firstLetter }.sorted { $0.firstName! < $1.firstName! }
    }
 }

 override func viewWillAppear(_ animated: Bool) {
    super.viewWillAppear(animated)

    getData()
    tableView.reloadData()
 }

 func getData() {
    // 1. Create context
    let context = CoreDataController.persistentContainer.viewContext

    // 2. RecoverData from Database with fetchRequest
    do {
        try listOfContacts = context.fetch(Contact.fetchRequest())
    } catch {
        print("Error \(error.localizedDescription)")
    }
}

// MARK: - Tableview data source

override func numberOfSections(in tableView: UITableView) -> Int {
     return sections.count
}

override func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
    return sections[section].count
}

override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
    let contact = sections[indexPath.section][indexPath.row]

    let cell = tableView.dequeueReusableCell(withIdentifier: Storyboard.cellIdentifier, for: indexPath)
    cell.textLabel?.text = contact.firstName

    return cell
}

 override func sectionIndexTitles(for tableView: UITableView) -> [String]? {
    return sortedFirstLetters
}


override func tableView(_ tableView: UITableView, titleForHeaderInSection section: Int) -> String? {
   return sortedFirstLetters[section]
}

注意:在管理检索和保存到CoreData时,CoreDataController是一个让我感到舒服的类(我所做的是从AppDelegate.swift复制生成的CoreData代码) 希望你能帮助我弄清楚它为什么不起作用。提前谢谢!

2 个答案:

答案 0 :(得分:0)

  

应该将NSSortDescriptor与您提取的查询一起使用,如:

  let sectionSortDescriptor = NSSortDescriptor(key: "first_name", ascending: true)
  let sortDescriptors = [sectionSortDescriptor]
 fetchRequest.sortDescriptors = sortDescriptors
 let fetchedPerson = try context.fetch(fetchRequest) as! [Contact]

它可能解决了你的问题。如果你在此之后遇到问题,请告诉我。

答案 1 :(得分:0)

像这样更改你的功能

func getData() {
    // 1. Create context
    let context = CoreDataController.persistentContainer.viewContext

    // 2. RecoverData from Database with fetchRequest
    do {
        let fetchRequest = Contact.fetchRequest()
        let sectionSortDescriptor = NSSortDescriptor(key: "first_name", ascending: true)
        let sortDescriptors = [sectionSortDescriptor]
        fetchRequest.sortDescriptors = sortDescriptors
        let fetchedPerson = try context.fetch(fetchRequest) as! [Contact]
        try listOfContacts = context.fetch(fetchRequest)
    } catch {
        print("Error \(error.localizedDescription)")
    }
}