イニシャライザ
init(_:children:content:)
root のデータ要素とその子へのキーパスからアウトライングループを作成します。
宣言
init<DataElement>(_ data: Data, children: KeyPath<DataElement, Data?>, content: @escaping (DataElement) -> Leaf) where ID == DataElement.ID, DataElement : Identifiable, DataElement == Data.Element
Data が RandomAccessCollection に準拠し、ID が Data.Element.ID であり、Parent が View に準拠し、Parentが Leaf であり、 Subgroup が DisclosureGroup<Parent であり、OutlineSubgroupChildren> と、Data.Element が Identifiable に準拠している場合に使用できます。
パラメータ
data
ツリー構造の、識別されたデータのコレクション。
children
nil 以外の値が data の子に与えるプロパティへのキーパス。nil 以外の空の値は、ファイルシステム内の空のディレクトリのように、現在子がない子を持つことができる要素を示します。一方、キーパスのプロパティが nil の場合、アウトライングループは data をファイルシステム内の通常のファイルのように、ツリー内のリーフとして扱います。
content
data 内の要素に基づいてコンテンツビューを生成するビュービルダ。
以下も見よ
アウトライングループの作成
root のデータ要素とその子へのキーパスからアウトライングループを作成します。
Data が RandomAccessCollection に準拠し、ID が Data.Element.ID であり、Parent が View に準拠し、Parentが Leaf であり、Subgroup が DisclosureGroup<Parent であり、OutlineSubgroupChildren> と、Data.Element が Identifiable に準拠している場合に使用できます。
root のデータ要素、その識別子(ID)へのキーパス、およびその子へのキーパスからアウトライングループを作成します。
Data が RandomAccessCollection に準拠し、ID が Hashable に準拠し、Parent が View に準拠し、Parent が Leaf であり、Subgroup が DisclosureGroup<Parent であり、OutlineSubgroupChildren>である場合に使用できます。
root のデータ要素のコレクション、データ要素の識別子(ID)へのキーパス、およびその子へのキーパスからアウトライングループを作成します。
Data が RandomAccessCollection に準拠し、ID が Hashable に準拠し、Parent が View に準拠し、Parent が Leaf であり、Subgroup が DisclosureGroup<Parent であり、OutlineSubgroupChildren>である場合に使用できます。