6
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Cocoa Applicationのウィンドウでよく使う処理

Last updated at Posted at 2012-06-25
Appdelegate.m

// ウィンドウの位置やサイズを保存する
- (void)applicationDidFinishLaunching:(NSNotification *)aNotification
{
	// Autosave Nameを設定
	[_window setFrameAutosaveName:@"mainWindow"];
}

// ウィンドウをすべて閉じたらアプリケーションを終了
- (BOOL)applicationShouldTerminateAfterLastWindowClosed:(NSApplication *)theApplication
{
    return YES;
}

6
5
2

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
6
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?