Я только начал изучать Цель c. Теперь я хочу под заголовком (маленький серый текст) под заголовком "большой". я использую код:
cell.detailTextLabel.text = @"Test";
но в симуляторе я не вижу под заголовком.
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
}
// Configure the cell...
cell.textLabel.text = [self.authorList objectAtIndex:[indexPath row]];
cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
return cell;
}