Instance Property インスタンスプロパティ

object

The object associated with the notification. 通知と結び付けられたオブジェクト。

Declaration 宣言

@property(nullable, readonly, retain) id object;

Discussion 議論

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 handlePortDeath: when the PortInvalid notification is posted to the notification center and that handlePortDeath: needs to access the object monitoring the port that is now invalid. handlePortDeath: can retrieve that object as shown here: 例えば、あなたがあるオブジェクトを登録してメッセージhandlePortDeath:PortInvalid通知が通知センターに投函される時に受け取る、そしてそのhandlePortDeath:は現在使用不可にされるポートを監視しているオブジェクトにアクセスする必要があると考えてください。handlePortDeath:は、そのオブジェクトを回収できます、ここに示すように:

Listing 1 Example of accessing notification object. コード出力 1 通知オブジェクトにアクセスする例。

- (void)handlePortDeath:(NSNotification *)notification
{
    ...
    [self reclaimResourcesForPort:notification.object];
    ...
}

See Also 参照

Getting Notification Information 通知情報を得る