ios7 tableViewCell 图片显示不居中

@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 图片显示不居中

上一篇:SpringCloud @FeignClient的类注解@ReqestMapping无效报错:No message available","path":"/xxxx


下一篇:windows C input 注意