Type Property 型プロパティ

NSClassDescriptionNeededForClass

Posted by init(for:) when a class description cannot be found for a class. init(for:)によってあるクラス記述がクラスに対して見つけられない場合に投函されます。

Declaration 宣言

static let NSClassDescriptionNeededForClass: NSNotification.Name

Discussion 議論

After the notification is processed, init(for:) checks for a class description again. This checking allows an observer to register class descriptions lazily. The notification is posted only once for any given class, even if the class description remains undefined. この通知が処理された後、init(for:)はクラス記述について再び調べます。この確認は、オブザーバにクラス記述を遅延に登録させます。通知は、何らかの与えられたクラスに対してただ一度だけ投函されます、たとえクラス記述が未定義のままだとしてもです。

The notification object is the class object for which the class description is requested. This notification does not contain a userInfo dictionary. 通知オブジェクトは、それに対してクラス記述が要請されたところのクラスオブジェクトです。この通知は、userInfo辞書を含みません。

See Also 参照

AppKit