self.contentView.frame.width小于iPad中单元格的实际宽度,iPhone也没问题。
这里是自定义单元格的代码
cellContentView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, self.contentView.frame.size.width, 100)];
cellContentView.backgroundColor = [UIColor whiteColor];
[self.contentView addSubview:cellContentView];
你可以看到我对这张照片的意思
我该怎么办?
解
使用:[UIScreen mainScreen] .bounds.size.width
谢谢@santhu