是否可以完美地适应UIImageView
其内容,以便:
- 图像和物体的原点
UIImageView
重合; - 图像的框架和
UIImageView
物体重合?
我尝试使用以下代码:
self.imageView.contentMode = UIViewContentModeScaleAspectFit;
[self.imageView setBounds:CGRectMake(self.imageView.bounds.origin.x,
self.imageView.bounds.origin.y,
self.imageView.bounds.origin.x + self.imageView.image.size.width,
self.imageView.bounds.origin.y + self.imageView.image.size.height)];
但是,在这种方式中,UIImageView
对象从 开始(0,0)
,而图像位于屏幕中央。
提前致谢。