Removing cell borders from a section of grouped-style UITableView

后端 未结 15 2143
南旧
南旧 2020-12-04 07:56

I have a UITableViewController initialized with the grouped style and having multiple sections. For one of these sections, I\'d like its constituent cells to be completely t

15条回答
  •  囚心锁ツ
    2020-12-04 08:18

     UIView *backView = [[UIView alloc] initWithFrame:CGRectZero];
     backView.backgroundColor = [UIColor clearColor];
     cell.backgroundView = backView;
     cell.backgroundColor = [UIColor clearColor];
     [cell.contentView addSubview:imageView];
    

提交回复
热议问题