Hi,
How can I use a Table view to build a data grid for a dynamic set of data?
Say, I have a 2D collection of data elements (a matrix, basically) with variable number of columns, and a 1D collection of column labels (a vector). For the sake of simplicity, let's assume that all data elements are Strings.
let data: [[String]]; let columnLabels: [String]
How can I build TableColumn definitions without key paths?
Thanks!