将 CoreData 保存到 iCloud (Swift)
Posted
技术标签:
【中文标题】将 CoreData 保存到 iCloud (Swift)【英文标题】:Save CoreData to iCloud (Swift) 【发布时间】:2015-01-21 08:11:11 【问题描述】:我已经有一个 CoreData,那么现在我想将一个数据保存到 iCloud。
在 AppDelegate.swift 中
lazy var persistentStoreCoordinator: NSPersistentStoreCoordinator? =
var coordinator: NSPersistentStoreCoordinator =
NSPersistentStoreCoordinator (managedObjectModel: self.managedObjectModel)
var storeURL =
self.applicationDocumentsDirectory
.URLByAppendingPathComponent("DeviceCoreData.sqlite")
var storeOptions =
[NSPersistentStoreUbiquitousContentNameKey : "MyDevices"
// NSPersistentStoreRebuildFromUbiquitousContentOption: @(true)
]
//
self.registerCoordinatorForStoreNotifications (coordinator)
var error : NSError? = nil
var store : NSPersistentStore! =
coordinator.addPersistentStoreWithType (NSSQLiteStoreType,
configuration: nil,
URL: storeURL,
options: storeOptions,
error: &error)
if nil == store
// handle error
return coordinator
()
func registerCoordinatorForStoreNotifications (coordinator : NSPersistentStoreCoordinator)
let nc : NSNotificationCenter = NSNotificationCenter.defaultCenter();
nc.addObserver(self, selector: "handleStoresWillChange:",
name: NSPersistentStoreCoordinatorStoresWillChangeNotification,
object: coordinator)
nc.addObserver(self, selector: "handleStoresDidChange:",
name: NSPersistentStoreCoordinatorStoresDidChangeNotification,
object: coordinator)
nc.addObserver(self, selector: "handleStoresWillRemove:",
name: NSPersistentStoreCoordinatorWillRemoveStoreNotification,
object: coordinator)
nc.addObserver(self, selector: "handleStoreChangedUbiquitousContent:",
name: NSPersistentStoreDidImportUbiquitousContentChangesNotification,
object: coordinator)
但是当我构建应用程序时,我收到一条错误消息
由于未捕获的异常而终止应用程序 'NSInvalidArgumentException',原因:'-[Ơn_Giời.AppDelegate handleStoresDidChange:]: 无法识别的选择器发送到实例 0x17668770'
有人可以帮助我吗?我在这里堆了 3 天。
还有
[NSPersistentStoreUbiquitousContentNameKey : "MyDevices"]
此密钥是否正确?我的 cloudkit 名为 iCloud.MyDevices 感谢您的帮助...
【问题讨论】:
编写一个handleStoresDidChange
函数当然是一个好的开始,这就是异常告诉你的。
@pNre:嗨。当我禁用此行时,应用程序正常工作(无错误)。但我无法将我的核心数据保存到 icloud
【参考方案1】:
这一行:
nc.addObserver(self, selector: "handleStoresDidChange:",
name: NSPersistentStoreCoordinatorStoresDidChangeNotification,
object: coordinator)
表示当发布该通知时,应在对象 self
(显然是应用委托)上调用名为 handleStoresDidChange:
的方法
错误:
Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[Ơn_Giời.AppDelegate handleStoresDidChange:]: unrecognized selector sent to instance 0x17668770'
说AppDelegate
没有名为handleStoresDidChange:
的方法。
这就是应用崩溃的原因:您已指示通知中心调用一个不存在的方法。如果您告诉通知中心它应该调用一个方法,则该方法必须存在。您需要创建该方法或告诉通知中心调用其他确实存在的方法。
【讨论】:
谢谢,我找到了问题。再次感谢 @ZoomNguyễn 如果它解决了您的问题,请不要忘记接受答案。 @Tom Harrington 你已经很好地解释了这个错误。很有帮助。谢谢以上是关于将 CoreData 保存到 iCloud (Swift)的主要内容,如果未能解决你的问题,请参考以下文章
如何将 CoreData 存储到 iCloud 帐户 iOS 编程?