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

removeObject(forKey:)

Removes a given key and its associated value from the dictionary. 与えられたキーとそれの関連値を辞書から取り除きます。

Declaration 宣言

func removeObject(forKey aKey: Any)

Parameters パラメータ

aKey

The key to remove. 削除することになるキー。

Discussion 議論

Does nothing if aKey does not exist. aKeyが存在しないならば何もしません。

For example, assume you have an archived dictionary that records the call letters and associated frequencies of radio stations. To remove an entry for a defunct station, you could write code similar to the following: 例えば、あなたがアーカイブされた辞書を持つと仮定してください、それは呼出符号と結び付けられた無線局の周波数を記録するものです。現存しない局に対する登録項目を取り除くには、あなたは以下に似たコードを書けます:


NSMutableDictionary *stations = nil;
 
stations = [[NSMutableDictionary alloc]
        initWithContentsOfFile: pathToArchive];
[stations removeObjectForKey:@"KIKT"];

See Also 参照

Removing Entries From a Mutable Dictionary 登録項目を可変辞書から取り除く