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

stringForKey:

Returns the string associated with the specified key. 指定されたキーと結びつけられた文字列を返します。

Declaration 宣言

- (NSString *)stringForKey:(NSString *)defaultName;

Parameters パラメータ

defaultName

A key in the current user‘s defaults database. 現在のユーザのもつdefaultsデータベースの中のあるキー。

Return Value 戻り値

For string values, the string associated with the specified key; for number values, the string value of the number. Returns nil if the default does not exist or is not a string or number value. 文字列値に対して、指定されたキーと結びつけられた文字列;数値に対して、その数の文字列値。nilを返します、もしdefaultが存在しないまたは文字列か数値でないならば。

Discussion 議論

The returned string is immutable, even if the value you originally set was a mutable string. 返される文字列は不変です、たとえあなたがもともと設定した値が可変文字列だったとしても。

See Also 参照

Getting Default Values defaults値を取得する

Related Documentation 関連文書