指定した通知センターで通知キューを初期化して返します
-(id)initWithNotificationCenter:(NSNotificationCenter *)notificationCenter:
解説
指定した通知センターで通知キューを初期化して返します。
返り値
( id )
通知キュー
引数
( NSNotificationCenter * )notificationCenter
通知センター
フレームワーク
Foundation
クラス
NSNotificationQueue
Instance Methods
使用可能
10.0
参照
例文
- (IBAction)post:(id)sender { NSNotification *notifi = [NSNotification notificationWithName:@"NSWindowDidResizeNotification" object:nil]; NSNotificationCenter *nCenter =[NSNotificationCenter defaultCenter]; NSNotificationQueue *nqueue = [[NSNotificationQueue alloc] initWithNotificationCenter:nCenter]; // [nqueue enqueueNotification:notifi postingStyle:NSPostNow coalesceMask:NSNotificationCoalescingOnName forModes:nil]; }