func removeAllObjects ()
Empties the dictionary of its entries.
それの登録項目の辞書を空にします。
func removeObjects (forKeys : [Any])
Removes from the dictionary entries specified by elements in a given array.
辞書からある与えられた配列の中の要素によって指定される登録項目を取り除きます。
Availability 有効性
Technology
func removeObject(forKey aKey: Any)
aKey
The key to remove. 削除することになるキー。
Important 重要
Raises an invalid
if a
is nil
.
invalid
を引き起こします、もしa
がnil
であるならば。
Does nothing if a
does not exist.
a
が存在しないならば何もしません。
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: 例えば、あなたがアーカイブされた辞書を持つと仮定してください、それは呼出符号と結び付けられた無線局の周波数を記録するものです。現存しない局に対する登録項目を取り除くには、あなたは以下に似たコードを書けます:
func removeAllObjects ()
func removeObjects (forKeys : [Any])