Quick question:
How can i change the label text color of the section i have in a UITableViewController, grouped style?
EDIT:
Example
-(NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section{
switch (section) {
case 0:
return @"A";
break;
case 1:
return @"B";
break;
case 2:
return @"C";
break;
default:
return nil;
break;
}
}
I want “A”, “B”, “C”, to be white. Suggestions?
I don’t think you can edit your title color / size of your section. This was mentioned in the apple forums.
What you can do is – Implement your own label / view for the section headers.