Swift 3 中的 managedObjectContext
Posted
技术标签:
【中文标题】Swift 3 中的 managedObjectContext【英文标题】:managedObjectContext in Swift 3 【发布时间】:2016-08-29 07:08:53 【问题描述】:我想通过this example code 工作,其中使用 Swift 和 CoreData 创建表。但是,使用 Swift 3 我无法让它工作。最重要的是,我无法正确替换该行
// set up the NSManagedObjectContext
let appDelegate = NSApplication.sharedApplication().delegate as! AppDelegate
managedContext = appDelegate.managedObjectContext
即使我找到了this related question(但它是 ios 而不是 OS X)。如何替换产生错误消息Value of type 'AppDelegate' has no member 'managedContext'
的那段代码?
【问题讨论】:
您在创建新项目时是否勾选了“使用核心数据”选项?它是必需的,因为它在 AppDelegate 中添加了 Core Data Stack 的代码。 @vadian 是的,我做到了。但是:我还检查了基于文档的应用程序、单元测试和 UI 测试。而且我注意到,当我检查所有内容时,AppDelegate 中没有代码,而只检查 CoreData... 这很奇怪。提交错误。要解决您的问题,请创建一个仅选中 Core Data 的新项目,并将 Core Data Stack 复制并粘贴到您的基于文档的项目中。 【参考方案1】:macOS 中的 Swift 3
let appDelegate = NSApplication.shared().delegate as! AppDelegate
let managedContext = appDelegate.managedObjectContext
你提供的错误是 'AppDelegate' has no member 'managedContext'
而不是 'AppDelegate' has no member 'managedObjectContext'
,这会让我认为你只需要修正你的语法。
iOS 10 中的 Swift 3
Core Data 至少需要 3 件事才能发挥作用:
-
托管对象模型
持久存储协调器
还有一个托管对象上下文
把这三样东西放在一起,你就得到了核心数据栈。
在 iOS 10 发布时,引入了一个名为 NSPersistentContainer 的新对象,它封装了核心数据堆栈。
如何创建容器对象回答here。
managedObjectContext
现在是一个名为 viewContext
的属性,通过以下方式访问:
let delegate = UIApplication.shared.delegate as! AppDelegate
let managedObjectContext = delegate.persistentContainer.viewContext
一篇很有帮助的文章是 What's New in Core Data,但如果阅读内容看起来有点过于繁重,这篇 WWDC video 很好地解释了这个主题。
【讨论】:
【参考方案2】:AppDelegate
只有以下成员
// MARK: - Core Data stack
lazy var persistentContainer: NSPersistentContainer =
/*
The persistent container for the application. This implementation
creates and returns a container, having loaded the store for the
application to it. This property is optional since there are legitimate
error conditions that could cause the creation of the store to fail.
*/
let container = NSPersistentContainer(name: "")
container.loadPersistentStores(completionHandler: (storeDescription, error) in
if let error = error as NSError?
// Replace this implementation with code to handle the error appropriately.
// fatalError() causes the application to generate a crash log and terminate. You should not use this function in a shipping application, although it may be useful during development.
/*
Typical reasons for an error here include:
* The parent directory does not exist, cannot be created, or disallows writing.
* The persistent store is not accessible, due to permissions or data protection when the device is locked.
* The device is out of space.
* The store could not be migrated to the current model version.
Check the error message to determine what the actual problem was.
*/
fatalError("Unresolved error \(error), \(error.userInfo)")
)
return container
()
所以使用
let managedContext = (UIApplication.shared.delegate as! appDelegate).persistentContainer.viewContext
这样就可以了
【讨论】:
【参考方案3】:适用于 macOS 和 Swift 3.1
let moc: NSManagedObjectContext = (NSApplication.shared().delegate as! AppDelegate).persistentContainer.viewContext
【讨论】:
【参考方案4】:I swift 3 你可以通过这段代码获取 managedContext 设置:
let managedContext = (UIApplication.shared.delegate as! AppDelegate).persistentContainer.viewContext
【讨论】:
适用于 Swift4以上是关于Swift 3 中的 managedObjectContext的主要内容,如果未能解决你的问题,请参考以下文章
swift 3中的ResponseCollectionSerializable