Contents

init(_:)

Creates a table row for the given value.

Declaration

init(_ value: Value)

Parameters

  • value:

    The value of the row.

Discussion

The table provides the value of a row to each column of a table, which produces the cells for each row in the column.

The following example creates a row for one instance of the Person type. The table delivers this value to its columns, which displays different fields of Person.

 TableRow(Person(givenName: "Tom", familyName: "Clark"))