我如何在swift中获取fetchedObject?

时间:2015-05-25 17:41:19

标签: swift ios8

我正在尝试使用它:

func configureCell(cell: UITableViewCell, atIndexPath indexPath: NSIndexPath){
    let task = tasks.fetchedObject[indexPath.row] as Task
    cell.textLabel?.text = task.n
}

但是在我的“let task”中我收到了这个错误:

“NSFetchedResultsController没有名为'fetchedObject'的成员”

我可以使用什么而不是fetchedObject?

1 个答案:

答案 0 :(得分:0)

获得fetchedObject后,您可以通过查找对象中的键/值对来设置单元格标题,attributeName应该与.xcdatamodeld文件中列出的属性名称完全匹配。

let task = tasks.fetchedObject[indexPath.row]
cell.textLabel?.text = task.valueForKey("attibuteName") as? String