gpt4 book ai didi

ios - 将图像与顶部对齐,在 Swift 2 iOS 9 中显示图像的一部分

转载 作者:行者123 更新时间:2023-11-28 10:20:08 25 4
gpt4 key购买 nike

我需要以仅显示图像顶部的方式对齐 UIImageView。 (请看截图图片,UIImageView 标有红色轮廓)。假设图像的宽度 = 320px 和高度 = 300px,那么我想显示全宽:320px,但对于高度,应该只显示顶部 100px。

请指导我如何在 iOS 9/Swift 2.0 上实现相同的目标。

play

最佳答案

您可以使用 imageView 的 contentMode 属性来缩放图像的一部分。您可以选择几种不同的模式,在下面的示例中我使用了 UIViewContentMode.top

let img = UIImage(named: "image")
imageView.contentMode = .top
imageView.clipsToBounds = true
imageView.image = img

关于ios - 将图像与顶部对齐,在 Swift 2 iOS 9 中显示图像的一部分,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35979647/

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