在 Swift 中访问 NSManagedObject 属性
Posted
技术标签:
【中文标题】在 Swift 中访问 NSManagedObject 属性【英文标题】:Access NSManagedObject properties in Swift 【发布时间】:2016-09-30 06:59:31 【问题描述】:我正在从核心数据中获取 NSManagedObjects 并尝试填充 tableview。当我得到对象数组时,我可以访问和打印该属性。但是当我尝试在 tableView cellForRowAtIndexpath 中访问相同的值时,我得到了 nil 值。为什么会这样?
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)
【问题讨论】:
您确定您的所有Notes
实例都有body
值吗?如果您将 nil 值强制为非 nil,则会显示这些错误
是的,有 2 个值并且打印正确。如果没有 body 值,错误应该出现在 viewdidload 本身。
为了帮助其他人回答和帮助您,最好在这里发布您的代码而不是链接图像。
Interface Builder 中是否连接了表格视图实例?顺便说一句,您也可以在 IB 中而不是在代码中连接委托和数据源。
TableView 已连接。如果我在 viewDidLoad 中打印 notesArray[0].body 它的打印效果很好,那么在 tableView 方法中同样打印 nil。
【参考方案1】:
您应首先确认 [index.row] 位置的对象不是 nil
【讨论】:
是的,在 tableview 方法中,Notes 对象具有所有 nil 值,直到 viewDidAppear 值不是 nil 并且打印正确。【参考方案2】:我发现 NSManagedObjects 的生命周期较短,即我们不能将它们存储在数组或其他东西中并在以后使用它。所以我开始使用 NSManagedSubClasses 并改为使用它们。
【讨论】:
以上是关于在 Swift 中访问 NSManagedObject 属性的主要内容,如果未能解决你的问题,请参考以下文章
MagicalRecord saveWithBlock 用法现在无法在 XCode 7 beta 5 下编译