Mac OSX应用程序:与NSArrayController相关的问题NSTableView核心数据添加记录
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Mac OSX应用程序:与NSArrayController相关的问题NSTableView核心数据添加记录相关的知识,希望对你有一定的参考价值。
我使用NSArrayController
NSTableView
和Core data
绑定。
我采取了一个button
并将add:
的NSArrayController
方法连接到它的行动。
在添加新记录
TableView
补充并显示新纪录。
NSArrayController's
add
:方法叫做
问题:值未添加到核心数据(Sqlite类型)中。
应用程序重新启动显示旧数据。
答案
这是一个苹果示例代码。基本上它会尝试在应用程序终止之前保存上下文。根据您的具体情况,您可以将功能移至其他位置。
func applicationShouldTerminate(_ sender: NSApplication) -> NSApplication.TerminateReply {
// Save changes in the application's managed object context before the application terminates.
let context = persistentContainer.viewContext
if !context.commitEditing() {
NSLog("(NSStringFromClass(type(of: self))) unable to commit editing to terminate")
return .terminateCancel
}
if !context.hasChanges {
return .terminateNow
}
do {
try context.save()
} catch {
let nserror = error as NSError
// Customize this code block to include application-specific recovery steps.
let result = sender.presentError(nserror)
if (result) {
return .terminateCancel
}
let question = NSLocalizedString("Could not save changes while quitting. Quit anyway?", comment: "Quit without saves error question message")
let info = NSLocalizedString("Quitting now will lose any changes you have made since the last successful save", comment: "Quit without saves error question info");
let quitButton = NSLocalizedString("Quit anyway", comment: "Quit anyway button title")
let cancelButton = NSLocalizedString("Cancel", comment: "Cancel button title")
let alert = NSAlert()
alert.messageText = question
alert.informativeText = info
alert.addButton(withTitle: quitButton)
alert.addButton(withTitle: cancelButton)
let answer = alert.runModal()
if answer == .alertSecondButtonReturn {
return .terminateCancel
}
}
// If we got here, it is time to quit.
return .terminateNow
}
另一答案
您可能缺少在NSArrayController上设置managedObjectContext和entityName。
以上是关于Mac OSX应用程序:与NSArrayController相关的问题NSTableView核心数据添加记录的主要内容,如果未能解决你的问题,请参考以下文章
Mac OS 的一点历史: Mac OS, Mac OSX 与Darwin