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

attributeKeys

Overridden by subclasses to return the names of attributes of instances of the described class. サブクラスによってオーバーライドされることで記述されたクラスのインスタンスの属性の名前を返します。

Declaration 宣言

var attributeKeys: [String] { get }

Return Value 戻り値

An array of NSString objects containing the names of attributes of instances of the described class. 記述されるクラスのインスタンスの属性の名前を含んでいるNSStringオブジェクトからなる配列。

Discussion 議論

For example, a class description that describes Movie objects could return the attribute keys title, dateReleased, and rating. 例えば、Movieオブジェクトを記述するクラス記述は、属性キーtitledateReleased、そしてratingを返すかもしれません。

If you have an instance of the class the receiver describes, you can use the NSObject instance method attributeKeys instead. あなたがレシーバが記述するクラスのインスタンスを持つならば、あなたはNSObjectのインスタンスメソッドattributeKeysを代わりに使うことができます。

See Also 参照

Related Documentation 関連文書