Instance Method
インスタンスメソッド
initWithDictionary:
Initializes a newly allocated dictionary by placing in it the keys and values contained in another given dictionary.
新しくアロケートされた辞書を別の与えられた辞書に含まれるキーと値をそれの中に置くことによって初期化します。
Declaration
宣言
- (instancetype)initWithDictionary:(NSDictionary
<KeyType, ObjectType> *)otherDictionary;
Parameters
パラメータ
otherDictionary
A dictionary containing the keys and values with which to initialize the new dictionary.
それで新しい辞書を初期化することになるキーと値を含んでいる辞書。
Return Value
戻り値
An initialized dictionary—which might be different than the original receiver—containing the keys and values found in otherDictionary
.
初期化された辞書 — それは元のレシーバとは異なるかもしれません — otherDictionary
において見つかったキーと値を含んでいます。
See Also
参照
Creating a Dictionary from Another Dictionary
辞書を別の辞書から作成する
+ dictionaryWithDictionary:
Creates a dictionary containing the keys and values from another given dictionary.
他の与えられた辞書からのキーと値を含んでいる辞書を作成します。
- initWithDictionary:copyItems:
Initializes a newly allocated dictionary using the objects contained in another given dictionary.
新しくアロケートされた辞書を別の与えられた辞書の中に含まれるオブジェクトを使って初期化します。