Я бы изменил первую строку в каждом разделе (изменить размер шрифта, цвет, aligment).
Я думаю, что-то вроде этого:
NSInteger sectionRows = [tableView numberOfRowsInSection:[indexPath section]];
if (sectionRows == 0){
cell.textLabel.text = cellDetail;
cell.detailTextLabel.textAlignment = UITextAlignmentCenter;
cell.detailTextLabel.backgroundColor = [UIColor blueColor];
cell.detailTextLabel.font = [UIFont systemFontOfSize:13];
} else {
cell.textLabel.text = cellDetail;
cell.detailTextLabel.text = cellValue;
}
но это не делает магию: D
Пожалуйста, дайте мне знать, если лучше открыть другую тему, или мы можем продолжить здесь.