gpt4 book ai didi

objective-c - UIImageView 填充 UIView

转载 作者:可可西里 更新时间:2023-11-01 04:10:18 24 4
gpt4 key购买 nike

我有一个 UIImageView 作为 UIViewsubview(帧大小 300 x 300)。我的 UIImage 可以是纵向、横向或一些奇怪的尺寸。如何在 UIView 帧大小内填充 UIImage 而不将图像拉伸(stretch)到 300 x 300

为此,我将添加另一个 UIImageView 作为图像边框。请帮忙。

谢谢。

最佳答案

尝试

[img setContentMode:UIViewContentModeScaleAspectFit];

UIViewContentModeScaleAspectFit: Scales the content to fit the size of the view by maintaining the aspect ratio. Any remaining area of the view’s bounds is transparent.

[img setContentMode:UIViewContentModeScaleAspectFill];

UIViewContentModeScaleAspectFill: Scales the content to fill the size of the view. Some portion of the content may be clipped to fill the view’s bounds.

如果你正在裁剪 subview ,那么你需要做

[imgView clipToBounds:YES];

关于objective-c - UIImageView 填充 UIView,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9521443/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com