我是swift的新手,我刚刚了解了核心数据,我正在尝试在我目前正在开发的项目上实现它。
以前我正在接受一个结构
struct Course : Decodable {
let CourseName : String;
let Requirements : String;
}
struct AllCourses : Decodable {
let ProgramName : String
let Courses : [Course]
}
我尝试创建两个实体并创建了一个父子关系,我设法保存它们,但是当我使用section header执行tableview时,我不能导致没有嵌套数组。
如果我想要一个包含程序名称的部分,我的属性和实体将如何。
答案 0 :(得分:2)
这是将NSFetchResultsController
与UITableViewController
结合使用的绝佳机会。
假设你的模型有这样的东西:
比你的代码看起来像这样:
import UIKit
import CoreData
class ViewController: UITableViewController {
lazy var fetchedResultsController: NSFetchedResultsController<Course> = {
let fetchRequest = NSFetchRequest<Course>(entityName: "Course")
fetchRequest.sortDescriptors = [NSSortDescriptor(key: "program.name", ascending: true)]
let moc = *your context*
let controller = NSFetchedResultsController(fetchRequest: fetchRequest, managedObjectContext: moc, sectionNameKeyPath: "program.name", cacheName: nil)
// controller.delegate = self
return controller
}()
override func numberOfSections(in tableView: UITableView) -> Int {
guard let sections = self.fetchedResultsController.sections else {
return 0
}
return sections.count
}
override func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
guard let sections = self.fetchedResultsController.sections else {
return 0
}
return sections[section].numberOfObjects
}
override func tableView(_ tableView: UITableView, titleForHeaderInSection section: Int) -> String? {
guard let sections = self.fetchedResultsController.sections else {
return ""
}
return sections[section].indexTitle
}
override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "CourseCell") as! UITableViewCell
cell.course = self.fetchedResultsController.object(at: indexPath)
return cell
}
}
当您将sectionNameKeyPath提供给获取的结果控制器时,它将自动“分组”结果。您可以通过在控制器上使用谓词来进一步限制结果。