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

persistentDomain(forName:)

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

Declaration 宣言

func persistentDomain(forName domainName: String) -> [String : Any]?

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 init(suiteName:) passing domainName and calling the dictionaryRepresentation() method on it. このメソッドを呼び出すことは、ユーザdefaultオブジェクトをinit(suiteName:)を使ってdomainName を渡して初期化して、dictionaryRepresentation()メソッドをそれの上で呼び出すことと等しいです。

See Also 参照

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