Instance Method インスタンスメソッド

isReadOnlyKey:

Returns a Boolean value indicating whether a specified property in the receiver is read-only. 指定されたプロパティがレシーバにおいて読出し専用かどうかを指し示しているブール値を返します。

Declaration 宣言

- (BOOL)isReadOnlyKey:(NSString *)key;

Parameters パラメータ

key

The identifying key for a property of the receiver. レシーバのプロパティに対する識別キー。

Return Value 戻り値

YES if the property specified by key exists in the receiver or in the NSScriptClassDescription for any superclass, and is read only; otherwise, NO. YES、もしkeyによって指定されるプロパティがレシーバの中にまたは何らかのスーパークラスに対するNSScriptClassDescriptionの中に存在する、そして読出し専用ならば;そうでなければ、NO

Discussion 議論

This method could return NO either because key is unrecognized or because writing to the property is not supported. Use hasWritablePropertyForKey: instead. このメソッドはNOを返すことがありえます、keyが認識されないことからまたはプロパティへの書き込みがサポートされないことからのどちらかで。hasWritablePropertyForKey:を代わりに使ってください。

See Also 参照

Getting attribute and relationship information 属性およびリレーションシップ情報を取得する