tags:

views:

24

answers:

1

how to use UITableViewCellStyleSubtitle and UITableViewCellStyleValue2 in 1 row with cell's text property not UILabel

+2  A: 
[[cell textLabel] setText:@"Main Line of Text"];
[[cell detailTextLabel] setText:@"Subtitle Here"];
adam