Appdelegate.m
// ウィンドウの位置やサイズを保存する
- (void)applicationDidFinishLaunching:(NSNotification *)aNotification
{
// Autosave Nameを設定
[_window setFrameAutosaveName:@"mainWindow"];
}
// ウィンドウをすべて閉じたらアプリケーションを終了
- (BOOL)applicationShouldTerminateAfterLastWindowClosed:(NSApplication *)theApplication
{
return YES;
}