More Than One DetailText In iOS Table

I understand that iOS Tables don’t have multiple columns, but you can use DetailText to add data underneath the regular text.

Table1.AddSection("") cellData = New iOSTableCellData cellData.Text = txtSomthing.Text cellData.DetailText = txtDetail.Text Table1.AddRow(0, cellData)

I was wondering if you can add more than one line of DetailText to add more information to the cell or are we just limited to one line? Can you add another line?

Thanks Jean,

That helps. I appreciate it.