В методе cellForRowAtIndexPath
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:CellIdentifier] autorelease];
}
cell.textLabel.text = @"Heading";
cell.detailTextLabel.text = @"DetailValue";
return cell;
Опции:
UITableViewCellStyleValue1, // как в настройках приложения)
UITableViewCellStyleValue2, // Стиль контактов
UITableViewCellStyleSubtitle // DetailText в сером.