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