A variadic array of two-member tuples, where the first member is a key and the second is its corresponding value. 2つのメンバーのタプルいくつかからなる可変長引数配列、そこで最初のメンバーはキーです、そして2つ目はそれの対応する値です。
Initializerinit(dictionary
init(dictionaryLiteral:)
Initializes a newly allocated dictionary from the given key-value pairs.
新しくアロケートされた辞書をこの与えられたキー値ペアそれらから初期化します。
Availability 有効性
- iOS 7.0+
- iPadOS 7.0+
- macOS 10.9+
- Mac Catalyst 13.0+
- tvOS 9.0+
- watchOS 2.0+
- Xcode 8.0+
Technology
- Foundation ファウンデーション
Declaration 宣言
required convenience init(dictionaryLiteral elements: (Any, Any)...)
Parameters パラメータ
elements
Relationships 関係
From Protocol 由来プロトコル
See Also 参照
Creating a Dictionary from Another Dictionary 辞書を別の辞書から作成する
init(dictionary: [AnyHashable : Any])
Initializes a newly allocated dictionary by placing in it the keys and values contained in another given dictionary.
新しくアロケートされた辞書を別の与えられた辞書に含まれるキーと値をそれの中に置くことによって初期化します。
init(dictionary: [AnyHashable : Any], copyItems : Bool)
Initializes a newly allocated dictionary using the objects contained in another given dictionary.
新しくアロケートされた辞書を別の与えられた辞書の中に含まれるオブジェクトを使って初期化します。