- removeObjectForKey:
Removes a given key and its associated value from the dictionary.
与えられたキーとそれの関連値を辞書から取り除きます。
- removeAllObjects
Empties the dictionary of its entries.
それの登録項目の辞書を空にします。
Availability 有効性
Technology
- (void)removeObjectsForKeys:(NSArray
<KeyType > *)keyArray;
keyArray
An array of objects specifying the keys to remove. 取り除くキーを指定しているオブジェクトからなる配列。
If a key in key
does not exist, the entry is ignored.
あるキーがkey
の中に存在しないならば、その登録項目は無視されます。
- removeObjectForKey:
- removeAllObjects