Initializer

init(selection:content:)

Creates a list with the given content that supports selecting multiple rows. あるリストをその与えられた内容で作成します、それは複数の行の選択をサポートします。

Declaration 宣言

init(selection: Binding<Set<SelectionValue>>?, content: () -> Content)

Parameters パラメータ

selection

A binding to a set that identifies selected rows. ある集合へのバインディング、それは選択された行を識別します。

content

The content of the list. リストの内容。

Discussion 議論

On iOS and tvOS, you must explicitly put the list into edit mode for the selection to apply. To do that, either add an EditButton to your user interface, or modify the editMode value directly.

See Also 参照

Creating a List with Arbitrary Content