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

persistentDomainForName:

Returns a dictionary representation of the defaults for the specified domain. 指定されたドメインに対するdefaultsの辞書表現を返します。

Declaration 宣言

- (NSDictionary<NSString *,id> *)persistentDomainForName:(NSString *)domainName;

Parameters パラメータ

domainName

The name of the domain to be represented. 表現されることになるドメインの名前。

Return Value 戻り値

A dictionary containing keys for each default name and their corresponding default values. 各default名に対するキーとそれらの対応しているdefault値を含んでいるある辞書。

Discussion 議論

Calling this method is equivalent to initializing a user defaults object with initWithSuiteName: passing domainName and calling the dictionaryRepresentation method on it. このメソッドを呼び出すことは、ユーザdefaultオブジェクトをinitWithSuiteName:を使ってdomainName を渡して初期化して、dictionaryRepresentationメソッドをそれの上で呼び出すことと等しいです。

See Also 参照

Maintaining Persistent Domains 永続ドメインを保守する