通知センターに通知をセットします
-(void)enqueueNotification:(NSNotification *)notification: postingStyle:(NSPostingStyle)postingStyle:
解説
通知センターに通知をセットします。
【NSPostingStyle】通知スタイル
● NSPostWhenIdle アイドル中に送信
● NSPostASAP
● NSPostNow すぐに送信
返り値
( void )
なし
引数
( NSNotification * )notification
通知
( NSPostingStyle )postingStyle
通知スタイル
フレームワーク
Foundation
クラス
NSNotificationQueue
Instance Methods
使用可能
10.0
参照
例文
- (IBAction)post:(id)sender { NSNotification *notifi = [NSNotification notificationWithName:@"NSWindowDidResizeNotification" object:nil]; NSNotificationQueue *nqueue = [NSNotificationQueue defaultQueue]; // [nqueue enqueueNotification:notifi postingStyle:NSPostNow]; }