Type Method 型メソッド

dictionaryWithDictionary:

Creates a dictionary containing the keys and values from another given dictionary. 他の与えられた辞書からのキーと値を含んでいる辞書を作成します。

Declaration 宣言

+ (instancetype)dictionaryWithDictionary:(NSDictionary<KeyType, ObjectType> *)dict;

Parameters パラメータ

otherDictionary

A dictionary containing the keys and values with which to initialize the new dictionary. それで新しい辞書を初期化することになるキーと値を含んでいる辞書。

Return Value 戻り値

A new dictionary containing the keys and values found in otherDictionary. otherDictionaryにおいて見つかったキーと値を含んでいる新しい辞書。

See Also 参照

Creating a Dictionary from Another Dictionary 辞書を別の辞書から作成する