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

post(name:object:userInfo:)

Creates a notification with a given name, sender, and information and posts it to the notification center. 通知をある与えられた名前、センダー(送り手)、そして情報から作成して、それを通知センターに投函します。

Declaration 宣言

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

Parameters パラメータ

aName

The name of the notification. 通知の名前。

anObject

The object posting the notification. 通知を投函しているオブジェクト。

aUserInfo

A user info dictionary with optional information about the notification. 通知についての随意の情報を備えるあるユーザ情報辞書。

See Also 参照

Posting Notifications 通知を投函する