我希望在XLForm内更改Section(或Form)的BackgroundColor。
部分 - 多值行模板。
section.multivaluedRowTemplate.cellConfig[@"backgroundColor"] = kBackgroundColor;
有一行
row.cellConfigAtConfigure[@"backgroundColor"] = kBackgroundColor;
答案 0 :(得分:0)
感谢@ mats-claassen
对GitHub的回复代码的
- (void)viewDidLoad {
[[self tableView] registerClass:[UITableViewHeaderFooterView class] forHeaderFooterViewReuseIdentifier:@"headerFooterReuseIdentifier"];
}
标题强>
-(UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section {
UITableViewHeaderFooterView *headerFooterView = [[self tableView] dequeueReusableHeaderFooterViewWithIdentifier:@"headerFooterReuseIdentifier"];
headerFooterView.contentView.backgroundColor = kBackgroundColor;
return headerFooterView;
}
<强>页脚强>
-(UIView *)tableView:(UITableView *)tableView viewForFooterInSection:(NSInteger)section {
UITableViewHeaderFooterView *headerFooterView = [[self tableView] dequeueReusableHeaderFooterViewWithIdentifier:@"headerFooterReuseIdentifier"];
headerFooterView.contentView.backgroundColor = kBackgroundColor;
return headerFooterView;
}