macOS/iOS API解説

iOS , Mac アプリケーション開発のために使われる主要フレームワークの日本語情報です。2010年代に書かれた内容です。今後更新はありません。

目次

initWithNotificationCenter:

指定した通知センターで通知キューを初期化して返します
-(id)initWithNotificationCenter:(NSNotificationCenter *)notificationCenter:

解説

指定した通知センターで通知キューを初期化して返します。

返り値

( id )

通知キュー

引数

( NSNotificationCenter * )notificationCenter

通知センター

クラス

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];

}