Yes, we haven't it.
I'm use default UIView classes instead:
- (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section {
static NSString *header = @"";
UITableViewHeaderFooterView *vHeader;
vHeader = [tableView dequeueReusableHeaderFooterViewWithIdentifier:header];
if (!vHeader) {
vHeader = [[UITableViewHeaderFooterView alloc] initWithReuseIdentifier:header];
vHeader.textLabel.backgroundColor = [UIColor clearColor];
vHeader.textLabel.font = [UIFont fontWithName:@"HelveticaNeue" size:14];
vHeader.textLabel.textColor = [UIColor tc_blueyGreyColor];
vHeader.contentView.backgroundColor = [UIColor whiteColor];
}
vHeader.textLabel.text = [self.viewModel titleForHeaderInSection:section];
return vHeader;
}
But you can try call view
property in ASDisplayNode too.