Cell 其他用法

  1. 空隙
- (void)setFrame:(CGRect)frame

{
    
    frame.size.height -= 10;
    
    [super setFrame:frame];
    
}
  1. headview 间隔
- (CGFloat)tableView:(UITableView*)tableView heightForHeaderInSection:(NSInteger)section{
    if(section == 0) {
    return 20;//设置headerview与第一个cel之间的距离l


      }
    return 1;


}

- (void)tableView:(UITableView *)tableView willDisplayHeaderView:(UIView *)view forSection:(NSInteger)section {
    if ([view isKindOfClass:[UITableViewHeaderFooterView class]]) {
        ((UITableViewHeaderFooterView *)view).backgroundView.backgroundColor = [UIColor clearColor];
    }
}

你可能感兴趣的:(Cell 其他用法)