ウインドウを閉じたときにメモリを解放するかを返します
解説
ウインドウを閉じたときにメモリを解放するかを返します。
NSWindowの初期設定はYESで、NSPanelの初期設定はNOです。
返り値
( BOOL )
開放するかYES/NO
引数
フレームワーク
ApplicationKit
クラス
NSWindow
Instance Methods
使用可能
10.0
参照
- setReleasedWhenClosed:
例文
#import "Controller.h" @implementation Controller - (IBAction)pushButton:(id)sender { if ([myWindow isReleasedWhenClosed]){ NSLog(@"YES"); } else { NSLog(@"NO"); } [myWindow setReleasedWhenClosed:YES]; [myWindow close]; } @end