Instance Method インスタンスメソッド

postNotificationName:object:

Creates a notification, and posts it to the receiver. 通知を作成して、それをレシーバに投函します。

Declaration 宣言

- (void)postNotificationName:(NSNotificationName)aName 
                      object:(NSString *)anObject;

Parameters パラメータ

notificationName

Name of the notification to post. Must not be nil. 投函する通知の名前。nilであってはいけません。

notificationSender

Sender of the notification. May be nil. 通知の送り手。nilかもしれません。

Discussion 議論

This method invokes postNotificationName:object:userInfo:deliverImmediately: with userInfo:nil deliverImmediately:NO. このメソッドは、postNotificationName:object:userInfo:deliverImmediately:userInfo:nil deliverImmediately:NOとともに発動します。

See Also 参照

Posting Notifications 通知を投函する