name
userInfo
Availability 有効性
Technology
@property(nullable, readonly, retain) id object;
This is often the object that posted this notification. It may be nil
.
これは概してこの通知を投函したオブジェクトです。それはnil
であるかもしれません。
Typically you use this method to find out what object a notification applies to when you receive a notification. 一般的にあなたはこのメソッドを使って、どんなオブジェクトが通知を依頼したかを、あなたが通知を受け取った時に見つけ出します。
For example, suppose you’ve registered an object to receive the message handle
when the Port
notification is posted to the notification center and that handle
needs to access the object monitoring the port that is now invalid. handle
can retrieve that object as shown here:
例えば、あなたがあるオブジェクトを登録してメッセージhandle
をPort
通知が通知センターに投函される時に受け取る、そしてそのhandle
は現在使用不可にされるポートを監視しているオブジェクトにアクセスする必要があると考えてください。handle
は、そのオブジェクトを回収できます、ここに示すように: