如何阻止图像在UIImageView中拉伸? [英] How to stop an image from stretching within a UIImageView?

查看:476
本文介绍了如何阻止图像在UIImageView中拉伸?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个 UIImageView 其中我已设置框架大小为 x = 0,y = 0,宽度= 404,高度= 712
在我的项目中,我需要动态改变 UIImageView 中的图像。

I have a UIImageView where I have set the frame size to x = 0, y = 0, width = 404, height = 712. In my project, I need to change the image in UIImageView dynamically.

我使用此代码更改图片:

I am using this code to change the image:

self.imageView.image = [UIImage imageNamed:@"setting-image.png"];

问题是,当 *。png 图像大小小于 UIImageView 帧大小,图像伸展。我不想要它伸展。有什么办法吗?

The problem is, when the *.png image size is smaller than the UIImageView frame size, the image stretches. I don't want it to stretch. Is there any way to do that?

推荐答案

您可以使用

self.imageView.contentMode = UIViewContentModeScaleAspectFit;

Swift 3:

imageView.contentMode = .scaleAspectFit

UIViewContentModeCenter / .center UIView文档

这篇关于如何阻止图像在UIImageView中拉伸?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆