In tableView:cellForRowAtIndexPath: I have the following:
tableView:cellForRowAtIndexPath:
cell.textLabel.text = @\"label\"; cell.detailTextLabel.text = @\"detail\";
Set the table View Cell Style to Subtitle in Storyboard
and write this code to configure you cell
if (cell == nil) { cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:BasicCellIdentifier] autorelease]; }