Here is the problem,
I subclass a UITableViewHeaderFooterView and want to change the font size:
- (id)initWithFrame:(CGRect)frame
{
self = [super
You could implement tableView:willDisplayHeaderView and change the font in kind of this way:
- (void)tableView:(UITableView *)tableView willDisplayHeaderView:(UIView *)view forSection:(NSInteger)section {
if(section == ...)
{
UITableViewHeaderFooterView *headerView = (UITableViewHeaderFooterView *)view;
NSAttributedString *headerText = ... ;
headerView.textLabel.attributedText = headerText;
}
}