- enqueueNotification:postingStyle:
- dequeueNotificationsMatching:coalesceMask:
Availability 有効性
Technology
- (void)enqueueNotification:(NSNotification
*)notification
postingStyle:(NSPostingStyle
)postingStyle
coalesceMask:(NSNotificationCoalescing
)coalesceMask
forModes:(NSArray
<NSRunLoopMode
> *)modes;
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. 通知に対する投函形式。投函形式は、いつ通知キューが通知をそれの通知センターに投函すべきかを指し示します。
coalesceMask
A mask indicating what criteria to use when matching attributes of notification
to attributes of notifications in the queue. The mask is created by combining any of the constants NSNotification
, NSNotification
, and NSNotification
.
notification
の属性をキューの中の通知の属性と照合する場合に使う基準は何かを指し示しているマスク。このマスクは、定数NSNotification
、NSNotification
、そしてNSNotification
をどれでも結合することによって作成されます。
modes
The list of modes the notification may be posted in. The notification queue will only post the notification to its notification center if the run loop is in one of the modes provided in the array. それで通知が投函されるかもしれないモードのリスト。通知キューは、単に通知をそれの通知センターに投函するだけです、もし実行ループが配列において提供されたモードの1つであるならば。
This parameter may be nil
, in which case it defaults to NSDefault
.
このパラメータはnil
であるかもしれません、その場合にはそれは初期状態ではNSDefault
になります。
- enqueueNotification:postingStyle:
- dequeueNotificationsMatching:coalesceMask: