注意アラートパネルを返します
id NSGetCriticalAlertPanel (
NSString * title ,
NSString * msg ,
NSString * defaultButton ,
NSString * alternateButton ,
NSString * otherButton );
解説
注意アラートパネルを返します。
返り値
引数
( NSString * )title
( NSString * )msg
( NSString * )defaultButton
( NSString * )alternateButton
( NSString * )otherButton
フレームワーク
ApplicationKit
クラス
NSGetCriticalAlertPanel
Function
使用可能
10.0
参照
例文
#import "MyObject.h" @implementation MyObject - (IBAction)myAction:(id)sender { id panel; panel = NSGetCriticalAlertPanel (NSLocalizedString(@"title", @""), NSLocalizedString(@"msg", @""), NSLocalizedString(@"OK", @""), NSLocalizedString(@"Cancel", @""),nil); [panel orderFront: self]; //[panel performClose: self]; //NSReleaseAlertPanel (panel); } @end