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
永続ドメインを保守する
- persistentDomainForName:
Returns a dictionary representation of the defaults for the specified domain.
指定されたドメインに対するdefaultsの辞書表現を返します。
- persistentDomainNames
Returns an array of the current persistent domain names.
現在の永続ドメイン名からなるある配列を返します。
Deprecated
非推奨