I have a grouped type table view and it looks pretty cool.
But, if I change the background color of the table to black, the titles becomes unclear.
Is it pos
From apple documentation
The table view uses a fixed font style for section header titles. If you want a different font style, return a custom view (for example, a UILabel object) in the delegate method tableView:viewForHeaderInSection:
instead.
So use the below method and return your custom view (UILabel) with your choice of font.
- (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section
Read from apple documentation