UITabelViewCell contentView不断调整大小

时间:2013-12-24 12:49:15

标签: ios uitableview

请查看下面的图片,其中我创建了一个UITableView,单元格之间有空格。我通过将Storyboard中的TableView行高设置为与

不同的大小来创建空格

- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {

回报。在单元格本身的代码中,我将contentView自动调整为:

-(void) layoutSubviews{

    self.backgroundColor = [UIColor clearColor];
    self.contentView.autoresizingMask = UIViewAutoresizingNone;
    self.autoresizingMask = UIViewAutoresizingNone;
}

这一切都很完美,如下所示:

enter image description here

但是,如果您在单元格上滑动,则结果如下:

enter image description here

空白区域没有回来!如何做到这一点?谢谢!

Rudolf

0 个答案:

没有答案