码迷,mamicode.com
首页 > 移动开发 > 详细

ios7 tableViewCell 图片显示不居中

时间:2014-08-26 13:09:26      阅读:172      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   os   io   div   log   sp   on   

@interface MyProfileViewCell : UITableViewCell

@end

@implementation MyProfileViewCell

- (void)layoutSubviews
{
    [super layoutSubviews];
    CGRect frame = self.imageView.frame;
    CGFloat y = frame.origin.y;
    y += 1;
    frame.origin.y = y;
    self.imageView.frame = frame;
}

@end

重写layoutSubviews方法,调整imageView的frame。

 

ios7 tableViewCell 图片显示不居中

标签:style   blog   color   os   io   div   log   sp   on   

原文地址:http://www.cnblogs.com/yaoxc/p/3936936.html

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