在我的 iphone 应用程序中,我需要在图像视图中设置图像。
图像视图高度始终为 100 像素。
we need to set the width of the image view with respect to the original image scale ratio.
即假设图像的宽度X高度为300x400(原始)(4x3)
我们显示的图像视图图像大小为75X100
图像的宽度 X 高度为512x512(原始)(1x1)
我们显示的图像视图图像大小将是100X100
图像的宽度 X 高度为128 x 256(原始)(1x2)
我们显示的图像视图图像大小将是50X100
in all those cases image view height 100pixel should be same, but the width need to varie with respect to the image ratio.
最后图像视图应该在视图的中心
如何实现