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

removePersistentDomainForName:

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

Declaration 宣言

- (void)removePersistentDomainForName:(NSString *)domainName;

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 initWithSuiteName: passing domainName, and calling the removeObjectForKey: method on each of its keys. このメソッドを呼び出すことは、ユーザdefaultsオブジェクトをinitWithSuiteName:を使ってdomainNameを渡して初期化して、そしてremoveObjectForKey:メソッドをそれのキーそれぞれの上で呼び出すことと等しいです。

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

See Also 参照

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