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

removePersistentDomain(forName:)

Removes the contents of the specified persistent domain from the user’s defaults. 指定された永続ドメインの内容をユーザのもつdefaultsから取り除きます。

Declaration 宣言

func removePersistentDomain(forName domainName: String)

Parameters パラメータ

domainName

The name of the domain to have its contents removed. それの内容を取り除くことになるドメインの名前。

Discussion 議論

Calling this method is equivalent to initializing a user defaults object with init(suiteName:) passing domainName, and calling the removeObject(forKey:) method on each of its keys. このメソッドを呼び出すことは、ユーザdefaultsオブジェクトをinit(suiteName:)を使ってdomainNameを渡して初期化して、そしてremoveObject(forKey:)メソッドをそれのキーそれぞれの上で呼び出すことと等しいです。

When a persistent domain is changed, an didChangeNotification is posted. 永続ドメインが変更される時、didChangeNotificationが投函されます。

See Also 参照

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