iOSTableCellData.DetailText

From Xojo Documentation

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

Supported on Mobile (iOS).

The the smaller text that appears below the main Text in the cell.

Sample Code

Set the detail text:

Var cell As iOSTableCellData = Table1.CreateCell
cell.Text = "Acme Widget"
cell.DetailText = "Price: $3.00"
Table1.AddRow(0, cell)