我有一个ImageView的(比如100×100),我想,以填补一个(小)图像(比如50×10),我想图像不能在视图的顶部 ,而不是在取景当中。
如果我使用
imageView.contentMode = UIViewContentModeScaleAspectFit;
它填补与100×(如预期)缩放的图像,但在该视图的中间的图。
像这样:
+---------+
| |
|i m a g e| <---my image (scaled)
| |
+---------+ <---my UIImageView
如果我设置
imageView.contentMode = UIViewContentModeTop | UIViewContentModeScaleAspectFit;
我得到这个:
+---------+
| image | <---my image (not scaled)
| |
| |
+---------+
图像不进行缩放,并在ImageView的中间停留在50×10(由UIViewContentModeTop的指示,但它忽略UIViewContentModeScaleAspectFit)。
我如何得到它同时接受? 像这样:
+---------+
|i m a g e|
| |
| |
+---------+
这可能是最糟糕的解决方案,但它的工作原理,你应该先设置你的图像视图的框架,然后调用此方法。
-(void)adjustImageViewWithImageDimension:(CGRect)frame{
UIImageView *tempView = [[UIImageView alloc] initWithFrame:frame];
tempView.image = self.image;
tempView.contentMode = UIViewContentModeScaleAspectFill;
tempView.clipsToBounds = false;
CGFloat oldAlpha = self.alpha;
self.alpha = 1;
UIGraphicsBeginImageContext(tempView.bounds.size);
[tempView.layer renderInContext:UIGraphicsGetCurrentContext()];
UIImage *resultingImage = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
self.alpha = oldAlpha;
self.image = resultingImage;
self.contentMode = UIViewContentModeTop;
self.clipsToBounds = YES;
}
文章来源: How do I autoresize an image, but at the top of the ImageView (programmatically in Xcode)?