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

enqueue(_:postingStyle:)

Adds a notification to the notification queue with a specified posting style. 通知を通知キューにある指定された投函形式で加えます。

Declaration 宣言

func enqueue(_ notification: Notification, 
postingStyle: NotificationQueue.PostingStyle)

Parameters パラメータ

notification

The notification to add to the queue. キューに追加することになる通知。

postingStyle

The posting style for the notification. The posting style indicates when the notification queue should post the notification to its notification center. 通知に対する投函形式。投函形式は、いつ通知キューが通知をそれの通知センターに投函すべきかを指し示します。

Discussion 議論

This is a convenience method for calling enqueue(_:postingStyle:coalesceMask:forModes:) with coalescing criteria that will coalesce only notifications that match both the notification’s name and object and the runloop mode default. これは、enqueue(_:postingStyle:coalesceMask:forModes:)を基準を結合することで呼び出すことに対する便宜メソッドです、それは通知の持つ名前とオブジェクトそして実行ループモードdefaultの両方に一致する通知だけを結合します。

See Also 参照

Managing Notifications 通知を管理する