イニシャライザ
init(selection:content:)
単一の行の選択をサポートする、与えられたコンテンツでリストを作成します。
宣言
init(selection: Binding<SelectionValue?>?, content: () -> Content)
パラメータ
selection
選択した行への結束。
content
リストのコンテンツ。
議論
iOS および tvOS では、選択を適用するには、リストを明示的に編集モードにしなければなりません。
以下も見よ
任意のコンテンツでリストを作成
init(content: () -> Content)
与えられたコンテンツでリストを作成します。
SelectionValue が Never で、Content が View に準拠している場合に使用できます。
init(selection: Binding<Set<SelectionValue>>?, content: () -> Content)
複数行の選択をサポートする、与えられたコンテンツでリストを作成します。