macOS/iOS API解説

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

目次

postNotificationName:object:userInfo:options:

遠隔通知センターにポストします
-(void)postNotificationName:(NSString *)name:
             object:(NSString *)anObject:
             userInfo:(NSDictionary *)userInfo:
             options:(unsigned)options:

解説

遠隔通知センターにポストします。
NSNotificationDeliverImmediately
NSNotificationPostToAllSessions

返り値

( void )

なし

引数

( NSString * )name
( NSString * )anObject
( NSDictionary * )userInfo
( unsigned )options

クラス

NSDistributedNotificationCenter

Instance Methods

使用可能

10.3

参照

-postNotificationName:object:
-postNotificationName:object:userInfo:
-postNotificationName:object:userInfo:deliverImmediately:

例文

	NSDictionary *userInfo = [NSDictionary dictionaryWithObject:@"the string" forKey:@"key"];				  
	[[NSDistributedNotificationCenter defaultCenter] 
		postNotificationName:@"DOServer_AllNotification"
					  object:@"message"
					  userInfo:userInfo
					  options:NSNotificationDeliverImmediately
					  ];