在Swift中访问NSManagedObject属性

时间:2016-09-30 06:59:32

标签: ios swift core-data nsmanagedobject

我从核心数据中获取NSManagedObjects并尝试填充tableview。当我得到对象数组时,我能够访问和打印属性。但是当我尝试在tableView cellForRowAtIndexpath中访问相同的时候,我获得了nil值。为什么会这样?

enter image description here

{


import UIKit

类NotesView:UIViewController,UITableViewDelegate,UITableViewDataSource {

//MARK:- IBOutlets
@IBOutlet weak var NotesTable: UITableView!
var notesArray = [Notes]()

//MARK:- ViewController Delegates
override func viewDidLoad() {
    super.viewDidLoad()

    notesArray = Notes.getNotes()
    for value in notesArray{
        print(value.body!)
    }
    print(notesArray[0].body)
    NotesTable.delegate = self
    NotesTable.dataSource = self
}

override func didReceiveMemoryWarning() {
    super.didReceiveMemoryWarning()

}
//MARK:- TabelView Delegate Methods
func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
    return notesArray.count
}

func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
    let cell = tableView.dequeueReusableCellWithIdentifier("NotesTableCell")
    for value in notesArray{
        print("Value = \(value.body)")
    }
    cell?.textLabel?.text = (notesArray[indexPath.row]).body!

    return cell!
}

func tableView(tableView: UITableView, didSelectRowAtIndexPath indexPath: NSIndexPath) {
    let vc = UIStoryboard(name: "Main",bundle: nil).instantiateViewControllerWithIdentifier("NewNoteVC") as! NewNoteView
    vc.display = true
    vc.text = notesArray[indexPath.row].body!
    self.presentViewController(vc, animated: false, completion: nil)
}

}

2 个答案:

答案 0 :(得分:0)

首先确认位置[index.row]的对象不是nil

答案 1 :(得分:0)

我发现NSManagedObjects的生命周期较短,即我们无法将它们存储在数组或其他内容中,以后再使用它。所以我开始使用NSManagedSubClasses并使用它们。