The subtitle cell has a large label and a smaller gray-text sublabel.Make the cell with
UITableViewCellStyleSubtitle
:cell = [[[UITableViewCell alloc] initWithStyle: UITableViewCellStyleSubtitle reuseIdentifier: @"UITableViewCell"] autorelease];and set the label values:cell.textLabel.text = @"somewhere"; cell.detailTextLabel.text = @"over the rainbow";