Here is the problem,
I subclass a UITableViewHeaderFooterView and want to change the font size:
- (id)initWithFrame:(CGRect)frame { self = [super
It doesn't seem like the right place to put it, but you can change the font in the layoutSubviews method of your UITableViewHeaderFooterView subclass and it will apply properly.
layoutSubviews
UITableViewHeaderFooterView
- (void)layoutSubviews { [super layoutSubviews]; // Font self.textLabel.font = [UIFont systemFontOfSize:20]; }