标签:
解决方法:
重写cell的setFrame方法即可
- (void)setFrame:(CGRect)frame {
frame.size.width = self.window.frame.size.width;
[super setFrame:frame];
}
自定义UITableViewCell时, 使用autoLayout, 无法很好的做到屏幕适配
原文地址:http://www.cnblogs.com/Rinpe/p/4958270.html