标签: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。
标签:style blog color os io div log sp on
原文地址:http://www.cnblogs.com/yaoxc/p/3936936.html