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
辞書を別の辞書から作成する
- initWithDictionary:
Initializes a newly allocated dictionary by placing in it the keys and values contained in another given dictionary.
新しくアロケートされた辞書を別の与えられた辞書に含まれるキーと値をそれの中に置くことによって初期化します。
- initWithDictionary:copyItems:
Initializes a newly allocated dictionary using the objects contained in another given dictionary.
新しくアロケートされた辞書を別の与えられた辞書の中に含まれるオブジェクトを使って初期化します。