tableview分区头、分区尾颜色

  • (void)tableView:(UITableView *)tableView willDisplayHeaderView:(UIView *)view forSection:(NSInteger)section {
    view.tintColor = DLCColor(241, 241, 241);
    }
  • (void)tableView:(UITableView *)tableView willDisplayFooterView:(nonnull UIView *)view forSection:(NSInteger)section {
    view.tintColor = DLCColor(241, 241, 241);
    }

你可能感兴趣的:(tableview分区头、分区尾颜色)