请查看下面的图片,其中我创建了一个UITableView,单元格之间有空格。我通过将Storyboard中的TableView行高设置为与
不同的大小来创建空格 - (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {
回报。在单元格本身的代码中,我将contentView自动调整为:
-(void) layoutSubviews{
self.backgroundColor = [UIColor clearColor];
self.contentView.autoresizingMask = UIViewAutoresizingNone;
self.autoresizingMask = UIViewAutoresizingNone;
}
这一切都很完美,如下所示:
但是,如果您在单元格上滑动,则结果如下:
空白区域没有回来!如何做到这一点?谢谢!