我将尝试尽可能简单地使用NSFetchedResultsController从核心数据中获取我的cellForRowAtIndexPath看起来像这样
override func tableView(tableView: UITableView!, cellForRowAtIndexPath indexPath: NSIndexPath!) -> UITableViewCell? {
var cell = tableView.dequeueReusableCellWithIdentifier("Cell", forIndexPath: indexPath) as UITableViewCell
let newEntry : Entry = fetchedResultController.objectAtIndexPath(indexPath) as Entry
cell.textLabel.text = newEntry.title
return cell
}
我的应用崩溃了
当我替换
下面的行时let newEntry : Entry = fetchedResultsController.objectAtIndexPath(indexPath) as Entry
使用此行,应用程序工作记录填充tableview没有错误没有问题
let newEntry : AnyObject! = self.fetchedResultsController.objectAtIndexPath(indexPath)
问题是为什么AnyObject不是Entry NSManagedObject
谢谢
答案 0 :(得分:3)
NSFetchedResultsController没有问题,但Objective-C需要识别您的NSManagedObject子类。只需在NSManagedObject子类中添加@objc(Entry):
@objc(Entry)
class Entry: NSManagedObject {
@NSManaged var title: String
}
答案 1 :(得分:0)
我遇到了类似的问题。现在我已根据最新的iOS版本成功纠正了它。希望我的代码有所帮助。
if let newEntry = fetchedResultsController?.objectAtIndexPath(indexPath) as? Entry{
cell.textLabel?.text = newEntry.title
}
return cell
答案 2 :(得分:-1)
试试这个!
if let access:Entry = self.fetchedResultsController.objectAtIndexPath(indexPath) as? Entry {
cell.textLabel?.text = access.valueForKey("title") as? String
}
然后return
改为cell