Type Method 型メソッド

dictionaryWithSharedKeySet:

Creates a mutable dictionary which is optimized for dealing with a known set of keys. 既知のキーの集合を取り扱うために初期化される可変辞書を作成します。

Declaration 宣言

+ (NSMutableDictionary<KeyType, ObjectType> *)dictionaryWithSharedKeySet:(id)keyset;

Parameters パラメータ

keyset

The keyset, created by the NSDictionary class method sharedKeySetForKeys:. keysetNSDictionaryのクラスメソッドsharedKeySetForKeys:によって作成されます。

Return Value 戻り値

A new mutable dictionary optimized for a known set of keys. 新しい可変の辞書、キーからなるある既知の集合に対して最適化されます。

Discussion 議論

Keys that are not in the key set can still be set in the dictionary, but that usage is not optimal. そのキー集合の中にないキーは、依然として辞書の中に置かれます、しかしその使用は望ましくありません。

See Also 参照

Creating and Initializing a Mutable Dictionary 可変辞書を作成して初期化する