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

post(name:object:userInfo:)

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

Declaration 宣言

func post(name aName: NSNotification.Name, 
   object anObject: String?, 
 userInfo aUserInfo: [AnyHashable : Any]? = nil)

Parameters パラメータ

notificationName

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

notificationSender

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

notificationInfo

Dictionary containing additional information. May be nil. 追加情報を含んでいる辞書。nilかもしれません。

Discussion 議論

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

See Also 参照

Posting Notifications 通知を投函する