遠隔通知センターにポストします
-(void)postNotificationName:(NSString *)name: object:(NSString *)anObject: userInfo:(NSDictionary *)userInfo: options:(unsigned)options:
解説
遠隔通知センターにポストします。
NSNotificationDeliverImmediately
NSNotificationPostToAllSessions
返り値
( void )
なし
引数
( NSString * )name
( NSString * )anObject
( NSDictionary * )userInfo
( unsigned )options
フレームワーク
Foundation
クラス
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 ];