class var `default`: NotificationCenter
Overview 概要
Objects register with a notification center to receive notifications (NSNotification
objects) using the add
or add
methods. When an object adds itself as an observer, it specifies which notifications it should receive. An object may therefore call this method several times in order to register itself as an observer for several different notifications.
オブジェクトは、ある通知センターに登録して、通知(NSNotification
オブジェクト)を、add
またはadd
メソッドを使って受け取ります。あるオブジェクトがそれ自身をオブザーバ(監視者)として加える場合、それは、どの通知をそれが受け取るべきかを指定します。オブジェクトはしたがって、それ自身をオブザーバとして幾つかの異なる通知に対して登録するために、このメソッドを複数回呼び出すかもしれません。
Each running app has a default
notification center, and you can create new notification centers to organize communications in particular contexts.
実行中のアプリそれぞれは、default
通知センターを持ちます、そしてあなたは新しい通知センターを作成することで通信を組織化することが特定の文脈で行えます。
A notification center can deliver notifications only within a single program; if you want to post a notification to other processes or receive notifications from other processes, use Distributed
instead.
ある通知センターは、通知を単一のプログラムの内部でのみ配達できます;あなたが通知を他のプロセスに投函したいまたは通知を他のプロセスから受け取りたいならば、Distributed
を代わりに使ってください。