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

dataForKey:

Returns the data object associated with the specified key. 指定されたキーと結びつけられたデータオブジェクトを返します。

Declaration 宣言

- (NSData *)dataForKey:(NSString *)defaultName;

Parameters パラメータ

defaultName

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

Return Value 戻り値

The data object associated with the specified key, or nil if the key does not exist or its value is not a data object. 指定されたキーと結びつけられたデータオブジェクト、またはnil、もしキーが存在しないまたはそれの値がデータオブジェクトでないならば。

Discussion 議論

The returned data object is immutable, even if the value you originally set was a mutable data object. 返されるデータオブジェクトは不変です、たとえあなたがもともと設定した値が可変データオブジェクトだったとしても。

See Also 参照

Getting Default Values defaults値を取得する

Related Documentation 関連文書