- postNotificationName:object:
- postNotificationName:object:userInfo:
- postNotificationName:object:userInfo:deliverImmediately:
Availability 有効性
Technology
- (void)postNotificationName:(NSNotificationName
)name
object:(NSString
*)object
userInfo:(NSDictionary
*)userInfo
options:(NSDistributedNotificationOptions
)options;
notificationName
Name of the notification to post. Must not be nil
.
投函する通知の名前。nil
であってはいけません。
notificationSender
Sender of the notification. May be nil
.
通知の送り手。nil
かもしれません。
userInfo
Dictionary containing additional information. May be nil
.
追加情報を含んでいる辞書。nil
かもしれません。
Important 重要
Sandboxed apps can send notifications only if they do not contain a dictionary. If the sending application is in an App Sandbox, user
must be nil
.
サンドボックスされたアプリは、通知をそれが辞書を含まない場合にのみ送ることができます。送信するアプリケーションがApp Sandboxの中ならば、user
はnil
である必要があります。
notificationOptions
Specifies how the notification is posted to the task and when to deliver it to its observers. See Notification Posting Behavior
for details.
どのように通知がタスクに対して投函されるかそして何時それをそのオブザーバに配達するかを指定します。Notification Posting Behavior
を詳細として見てください。
The user
dictionary is serialized as a property list, so it can be passed to another task. In the receiving task, it is deserialized back into a dictionary. This serialization imposes some restrictions on the objects that can be placed in the user
dictionary. See XML Property Lists for details.
user
辞書はプロパティリストとしてシリアライズされます、それでそれは別のタスクに渡されることができます。受け取っているタスクにおいて、それは元の辞書へとデシリアライズされます。このシリアライズはいくつかの制限を、user
辞書の中に置くことができるオブジェクトに課します。XML Property Listsを詳細として見てください。
- postNotificationName:object:
- postNotificationName:object:userInfo:
- postNotificationName:object:userInfo:deliverImmediately: