sakkaras / SKSTableView

An expandable table view.
MIT License
446 stars 115 forks source link

Method viewForHeaderInSection delegate was not triggered #63

Open eternalBlast opened 6 years ago

eternalBlast commented 6 years ago
-(UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section
{
    UIView *view = [UIView new];
    view.frame = CGRectMake(0, 0, 320, 30);
    [view setBackgroundColor:[UIColor grayColor]];
    return view;
}
self.tableView.sectionHeaderHeight = 20;
self.tableView.estimatedSectionHeaderHeight = 20;

The above method is not triggered even has set the sectionHeaderHeight and estimatedSectionHeaderHeight. Any approach to solve this problem? Please help. Thanks.