码迷,mamicode.com
首页 > 其他好文 > 详细

UITableVIewcell中图片不能改变大小的原因

时间:2015-12-26 01:09:49      阅读:187      评论:0      收藏:0      [点我收藏+]

标签:

你有没没有发现,有时候把图片放进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;

    

}

UITableVIewcell中图片不能改变大小的原因

标签:

原文地址:http://www.cnblogs.com/vshiron/p/5077290.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!