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)];
However, in this way the UIImageView
object starts at (0,0)
, while the image is centered on the screen.
Thanks in advance.