Как отсортировать элемент таблицы сверху вниз, используя coredata - PullRequest
0 голосов
/ 06 января 2019

Я пытаюсь создать список имен в табличном представлении, и я отсортировал его сверху вниз, и я использую coreData для сохранения всей информации, но при перезапуске моего приложения мой табличный вид сортируется снизу вверх, а не сверху вниз. низ.

Я пытался использовать много других способов, но так запутался.

Мой coreData entinty "Персона" и внутри него у меня есть "имя"

import UIKit
import CoreData

var newList = [Person]()
var currentList = [Person]()
var myIndex = 0

class TableViewVC_SmartAccounting: UIViewController,UITableViewDataSource, UITableViewDelegate, UISearchBarDelegate, UITextFieldDelegate {

@IBOutlet weak var txtField: UITextField!
@IBOutlet weak var tableView: UITableView!
@IBOutlet weak var outAdd: UIButton!
@IBOutlet weak var searchBar: UISearchBar!

override func viewDidLoad() {
    super.viewDidLoad()
    fetchData()
    newList = currentList
    searchBar.backgroundImage = UIImage()
    txtField.returnKeyType = UIReturnKeyType.done
    txtField.delegate = self
}

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

}


func textFieldShouldReturn(_ textField: UITextField) -> Bool {
    txtField.resignFirstResponder()
    print("RETURN")
    return true
}

func fetchData(){

    let fetchRequist: NSFetchRequest<Person> = Person.fetchRequest()
    do {
        let listFetched = try PersistenceService.context.fetch(fetchRequist)
        currentList = listFetched
        self.tableView.reloadData()
    } catch let err as NSError {
        print("Field to fetch an item", err)
    }
}

func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
    return currentList.count
}

func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
    let cell = tableView.dequeueReusableCell(withIdentifier: "cell", for: indexPath) as! TableViewCellVC_SmartAccounting
    cell.lblName.text = currentList[indexPath.row].name
    return cell
}

func tableView(_ tableView: UITableView, canEditRowAt indexPath: IndexPath) -> Bool {
    return true
}

func tableView(_ tableView: UITableView, commit editingStyle: UITableViewCell.EditingStyle, forRowAt indexPath: IndexPath) {

    if editingStyle == .delete {

        let person = currentList.remove(at: indexPath.row)
        PersistenceService.context.delete(person)
        PersistenceService.saveContext()
        self.tableView.deleteRows(at: [indexPath], with: .fade)
    }
}

func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
    myIndex = indexPath.row
    performSegue(withIdentifier: "segue", sender: self)
    tableView.deselectRow(at: indexPath, animated: true)
}

func addPerson(){
    if txtField.text != ""{

        let person = Person(context: PersistenceService.context)
        person.name = txtField.text
        PersistenceService.saveContext()
       // currentList.append(person)
        currentList.insert(person, at: myIndex)
        view.endEditing(true)
        newList = currentList
        let indexPath = IndexPath(row: myIndex, section: 0)
        tableView.insertRows(at: [indexPath], with: .left)

       // tableView.insertRows(at: [IndexPath(row: list.count - 1, section: 0)], with: .automatic)
    }
    txtField.text = ""
    self.view.endEditing(true)


}

func setUpSearchBar() {
    searchBar.delegate = self
}

func searchBarSearchButtonClicked(_ searchBar: UISearchBar) {
    self.searchBar.endEditing(true)
}

func searchBar(_ searchBar: UISearchBar, textDidChange searchText: String) {
    guard !searchText.isEmpty else {currentList = newList
        tableView.reloadData()
        return }
    currentList = newList.filter ({ (Person) -> Bool in
        (Person.name?.lowercased().contains(searchText.lowercased()))!
    })
    tableView.reloadData()
}

func searchBar(_ searchBar: UISearchBar, selectedScopeButtonIndexDidChange selectedScope: Int) {
}

@IBAction func btnAdd(_ sender: Any) {
    addPerson()
}

}

1 Ответ

0 голосов
/ 06 января 2019
  • В объекте Person добавьте атрибут index типа Int32
  • В контроллере добавить метод для переиндексации currentList и сохранить контекст

    func reindex()
    {
        for (index, person) in currentList.enumerated() {
            person.index = Int32(index)
        }
        PersistenceService.saveContext()
     }
    
  • В fetchData добавить дескриптор сортировки

    fetchRequist.sortDescriptors = [NSSortDescriptor(key: "index", ascending: true)] 
    
  • После вставки объекта переиндексировать массив

    let person = Person(context: PersistenceService.context)
    person.name = txtField.text
    person.index = Int32(myIndex)
    currentList.insert(person, at: myIndex)
    let indexPath = IndexPath(row: myIndex, section: 0)
    tableView.insertRows(at: [indexPath], with: .left)
    reindex()
    view.endEditing(true)
    newList = currentList
    
  • И после удаления объекта переиндексировать массив тоже

    if editingStyle == .delete {
        let person = currentList.remove(at: indexPath.row)
        PersistenceService.context.delete(person)
        self.tableView.deleteRows(at: [indexPath], with: .fade)
        reindex()
    }
    
...