In tableView:cellForRowAtIndexPath: I have the following:
tableView:cellForRowAtIndexPath:
cell.textLabel.text = @\"label\"; cell.detailTextLabel.text = @\"detail\";
You need to set the cell type to Subtitle when you allocate it.
if (!cell) { cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:BasicCellIdentifier]; }