This repository was archived by the owner on Aug 24, 2020. It is now read-only.
This repository was archived by the owner on Aug 24, 2020. It is now read-only.
Add an option to change the BOTableViewSection appearance #40
Open
Description
In order to change the background and font colors of a section I need to use this workaround:
- (void)tableView:(UITableView *)tableView willDisplayHeaderView:(UIView *)view forSection:(NSInteger)section{
// Background color
view.tintColor = [UIColor blackColor];
UITableViewHeaderFooterView *header = (UITableViewHeaderFooterView *)view;
[header.textLabel setTextColor:[UIColor whiteColor]];
}
It should be handled by the appearance proxy.