i want to change the titleForHeader background color in iOS.
- (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section
{
return @"A";
}
this method show the titleHeader section in UITableView.
for default it’s background color is lightblue color.
I wan to change black color of these background.
How can i do?
Look at Alex Reynolds answer on here
UITableView – change section header color
If you just get a background color but no text
Look DoctorG answer on same question