我一直坚持这个错误很长一段时间了。我有UITabBar
个标签。第一个包含UITableViewController
在一周的不同日期进餐。第二个选项卡包含一个带有登录屏幕的UIViewController
。
UITableViewController
被称为' EettafelView'。它从在线资源中获取它(使用Alamofire)并在应用程序中呈现它们。它们缓存在CoreData
中,并使用NSFetchedResultsController
进行检索以显示它们。对于这个我使用默认的UITableViewDelegates
(numberOfRowsInSection,numberOfSections等) - 如果它们是相关的,我将在编辑中发布它们。
当tableview加载并且我已经设置了fetchController并且已经执行了一次fetch我非常打印它的对象以测试它所拥有的内容以及sort-descriptors是否完成了它们的工作。这导致以下结果:
Hollandse stoof met bokbier - Optional("maandag, 20 feb.")
Gehaktballetjes
Quorn gehakt
Stamppot van verse spinazie - Optional("dinsdag, 21 feb.")
Rookworst
Kaasspies
Indiase Curry - Optional("woensdag, 22 feb.")
Kip
Bloemkool
Pasta Mexicane - Optional("donderdag, 23 feb.")
Gehakt
Tofu en Bruine Bonen
Boeuf des Gardiens - Optional("vrijdag, 24 feb.")
Rundvlees
Kastanjechampignons
使用精美打印代码:
if let objects = fetchController?.fetchedObjects as? [Gerecht] {
for object in objects {
print("\(object.basis ?? "") - \(object.dateString)")
print("\t\(object.vlees ?? "")")
print("\t\(object.vega ?? "")")
}
}
这正是应该如此。因此,FetchController保存正确的对象并正确排序。然而,视图看起来像这样:
章节标题错误。检索节标题的代码如下:
override func tableView(_ tableView: UITableView, titleForHeaderInSection section: Int) -> String? {
if let sections = fetchController?.sections, sections.count > 0 {
return sections[section].name
} else {
return nil
}
}
我认为这是通用的。检索错误的部分标题有什么问题?
编辑: - CellForRow方法
override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "Eettafel") as? Eettafel_Cell
let gerecht = fetchController?.object(at: indexPath) as? Gerecht
if let gerecht = gerecht {
cell?.gerecht = gerecht
}
return cell!
}
编辑 - 在cellForRow中的Gerecht
打印NSManagedObject的描述(if-let gerecht处的断点)给出:
Printing description of gerecht.some:
<Almanapp.Gerecht: 0x1740b77c0> (entity: Gerecht; id: 0xd0000000000c0000 <x-coredata://A6B5411D-DF77-43DE-8084-86C76C42F68A/Gerecht/p3> ; data: {
basis = "Hollandse stoof met bokbier";
date = "2017-02-20 00:23:07 +0000";
dateString = "maandag, 20 feb.";
status = nil;
vega = "Quorn gehakt";
vlees = Gehaktballetjes;
})
哪个是对的。
答案 0 :(得分:4)
您需要
let request: NSFetchRequest<YourMO> = YourMO.fetchRequest()
let dateSorting = NSSortDescriptor(key: "date", ascending: true)
let sectionSorting = NSSortDescriptor(key: "sectionIdentifier", ascending: true)
request.sortDescriptors = [sectionSorting, dateSorting]
frc = NSFetchedResultsController(fetchRequest: request, managedObjectContext: context, sectionNameKeyPath: "sectionIdentifier", cacheName: nil)
答案 1 :(得分:2)
尝试替换你的titleForHeaderInSection函数。
override func tableView(_ tableView: UITableView, titleForHeaderInSection section: Int) -> String? {
if let gerecht = fetchController?.object(at: IndexPath(row: 0, section: section)) as? Gerecht {
return gerecht.dateString
}else{
return nil
}
}
我认为你正在使用的问题是:
if let sections = fetchController?.sections, sections.count > 0 {
return sections[section].name
检查并告诉我