I'm putting together a basic UITableView before getting some feedback of how the data should look, if there a tab character or some way that I can split up the data in a string to make it look for tabular ?
views:
17answers:
1
+1
A:
Sorry. The UILabel that holds that text isn't a terminal or a word processor and has no tab measures. What you can do is use a UITableViewCellStyleSubtitle
, and place the date and amounts on the second line with [[cell detailTextLabel] setText:[myObject dateAmountBalanceText]]
. It won't look quite like you want it to, but it'll look better until you can build your own custom UITableViewCell.
John Franklin
2010-10-01 13:52:09