Hi,
In my code, i use:
- (void)tableView:(UITableView *)tableView willDisplayHeaderView:(UIView *)view forSection:(NSInteger)section { view.tintColor = [UIColor colorWithWhite:0.5f alpha:0.5f]; UITableViewHeaderFooterView *header = (UITableViewHeaderFooterView *)view; [header.textLabel setTextColor:[UIColor whiteColor]]; }
But i don't see any block action for making the same things with your library.
I'd missed something ?
Thanks
Edit: I know i can subclass SCTableViewModel but it overloading my code, where you can just add a sectionActions.willDisplayHeaderView block to make the same.
Edited by skrew, 18 October 2015 - 04:33 AM.