func addObserver (forName : NSNotification.Name?, object: Any?, queue: OperationQueue?, using: (Notification) -> Void) -> NSObjectProtocol
func removeObserver (Any, name: NSNotification.Name?, object: Any?)
func removeObserver (Any)
Availability 有効性
Technology
func addObserver(_ observer: Any,
selector aSelector: Selector
,
name aName: NSNotification
.Name
?,
object anObject: Any?)
observer
An object to register as an observer. オブザーバ(監視者)として登録することになるオブジェクト。
aSelector
A selector that specifies the message the receiver sends observer
to alert it to the notification posting. The method that a
specifies must have one and only one argument (an instance of NSNotification
).
レシーバがobserver
に送って、それに通知を投函することを警告するメッセージを指定するセレクタ。a
が指定するメソッドは、ただひとつだけの引数(NSNotification
のインスタンス)を持たなければなりません。
aName
The name of the notification to register for delivery to the observer. Specify a notification name to deliver only entries with this notification name. オブザーバへの配達のために登録することになる通知の名前。ある通知名を指定して、この通知名をもつ登録項目のみを配達するようにしてください。
When nil
, the sender doesn’t use notification names as criteria for the delivery.
nil
の場合、送信者は通知名を配達のための基準として使いません。
anObject
The object that sends notifications to the observer. Specify a notification sender to deliver only notifications from this sender. 通知をオブザーバに送るオブジェクト。ある通知送信者を指定して、この送信者からの通知のみを配達してください。
When nil
, the notification center doesn’t use sender names as criteria for delivery.
nil
の場合、通知センターは送信者名を配達の基準として使いません。
Unregister an observer to stop receiving notifications. オブザーバを登録解除することで、通知の受け取りを停止してください。
To unregister an observer, use remove
or remove
with the most specific detail possible. For example, if you used a name and object to register the observer, use the name and object to remove it.
あるオブザーバを登録解除するには、remove
またはremove
をできるだけ多くの具体的な詳細で使ってください。例えば、あなたがオブザーバを登録するのに名前とオブジェクトを使ったならば、名前とオブジェクトを使ってそれを除去してください。
If your app targets iOS 9.0 and later or macOS 10.11 and later, you do not need to unregister an observer that you created with this function. If you forget or are unable to remove an observer, the system cleans up the next time it would have posted to it. あなたのアプリがiOS 9.0以降またはmacOS 10.11以降を目標とするならば、あなたはあなたがこの関数で作成したオブザーバを登録解除する必要はありません。あなたがオブザーバの除去を忘れるまたはそれができないならば、システムは、次にそれがそれに投函する時に片付けます。
func addObserver (forName : NSNotification.Name?, object: Any?, queue: OperationQueue?, using: (Notification) -> Void) -> NSObjectProtocol
func removeObserver (Any, name: NSNotification.Name?, object: Any?)
func removeObserver (Any)