NSPersistentDocument App Delegate

时间:2011-10-28 02:52:36

标签: cocoa

我刚刚创建了一个新的Core Data Document应用程序,并且在提供的模板中(只有NSPersistentDocument子类和模型),我想坚持

- (BOOL)applicationShouldTerminateAfterLastWindowClosed:(NSApplication *)theApplication
    return YES;
}

某个地方......我把它放在哪里?

1 个答案:

答案 0 :(得分:4)

Xcode的基于文档的应用程序模板默认不包含AppDelegate类。您必须手动创建它(通过子类化NSObject),将其添加到MainMenu.xib并将连接从Application的“delegate”出口拖到新的AppDelegate对象。