标签:
你有没没有发现,有时候把图片放进cell.imageView中时无法顺利改变大小呢?
其实根本原因是要在layoutSubviews重新配置一下,cell的布局里面默认有一个imageiView,同时,我们如果自己定义的话也需要在layoutSubviews中布局控件。
- (void)layoutSubviews {
//改变系统cell.imageView大小的方法
[super layoutSubviews];
self.imageView.bounds =CGRectMake(10,5,30,30);
self.imageView.frame =CGRectMake(10,5,30,30);
self.imageView.contentMode =UIViewContentModeScaleAspectFit;
//cell.textLabel
CGRect tmpFrame = self.textLabel.frame;
tmpFrame.origin.x = 46;
self.textLabel.frame = tmpFrame;
//cell.detailTextLabel
tmpFrame = self.detailTextLabel.frame;
tmpFrame.origin.x = 46;
self.detailTextLabel.frame = tmpFrame;
}
标签:
原文地址:http://www.cnblogs.com/vshiron/p/5077290.html