我有一个UITableViewCell
要设置的子类imageView
。我想把它保持在 60x60,所以我在我的子类的方法中设置了frame
and :bounds
layoutSubviews
- (void)layoutSubviews {
[super layoutSubviews];
self.imageView.bounds = CGRectMake(10,10,60,60);
self.imageView.frame = CGRectMake(10,10,60,60);
self.imageView.clipsToBounds = YES;
}//end
这很好用,直到我有一个超出范围的图像imageView
:
因此,我确保设置clipsToBounds
为 YES:
但是正如你所看到的,它仍然在缩进textLabel
and detailTextLabel
,尽管我认为它不应该是这样。
我该如何解决这个问题?