AsyncDisplayKit 是否有 viewForHeaderInSection 的替代方案?



我正在将现有应用程序转换为AsyncDisplayKit/Texture .我只是将UITableView转换为ASTableNode,但是,UITableView依赖于viewForHeaderInSection。但是,我无法在AsyncDisplayKitASTableDelegate中找到委托方法。

这种方法有替代方法吗?还是我应该开始寻找解决方法?

是的,我们没有。我改用默认的UIView类:

- (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;
} 

但是您也可以尝试在ASDisplayNode中调用view属性。

相关内容

  • 没有找到相关文章

最新更新