目前似乎ASTableNode
和ASTableView
都缺少剖面页眉/页脚视图的支持。
我不仅可以找到协议方法:
- (nullable NSString *)tableNode:(ASTableNode *)tableNode titleForHeaderInSection:(NSInteger)section
没有显示任何内容。
委托/ dataSource setter方法已被AsyncDisplayKit拦截,因此我无法使用UIKit的方式来执行此操作。
当我使用AsyncDisplayKit时,我可以添加节头/页脚视图吗?
答案 0 :(得分:5)
发现ASTableNode
会调用UITableViewDelegate
方法。
所以只需实现方法
- (nullable UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section;
- (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section;
它会像以前一样工作。