如何根据用户的屏幕尺寸在 iOS 上调整用户选择的图像的大小?

How do I resize a user selected image on iOS depending on their screen size?

我的应用程序允许用户 select 从他们的照片库中选择他们喜欢的任何照片。如果图像大于 UIImage 的尺寸,照片将覆盖屏幕(uiimage space 只是屏幕的一半)。如何根据设备屏幕的大小调整图像的大小以获取我提供的整个 space uiImage 视图?

抱歉,如果这个问题太简单而无法提出,但我是堆栈溢出和 iOS 编程的新手。

尝试设置内容模式:

imageView.contentMode = UIViewContentModeScaleAspectFit;

这将在 UIImageViews 的维度内显示图像。