iOSTableCellData.Text

From Xojo Documentation

Property (As Text )
aiOSTableCellData.Text = newTextValue
or
TextValue = aiOSTableCellData.Text

Supported on Mobile (iOS).

The text of the cell. This is the main (large) text that appears for the row.

Sample Code

Set the text:

Var cell As iOSTableCellData = Table1.CreateCell
cell.Text = "Acme Widget"
Table1.AddRow(0, cell)