Cell的一些坑: UITableViewCell宽度,在iphone5的时候是320,在iphone6的时候为啥也是320?

在自定制cell'的.m文件里重写setframe方法就可以了
- (void)setFrame:(CGRect)frame
{
    frame.size.width = [UIScreen mainScreen].bounds.size.width;
    [super setFrame:frame];
}

posted @ 2016-05-26 10:43  偶阵雨ss33  Views(800)  Comments(0)    收藏  举报