gpt4 book ai didi

ios - 调整 UIImageView 的大小以适应屏幕

转载 作者:行者123 更新时间:2023-11-28 06:26:56 25 4
gpt4 key购买 nike

有一个 UIImageView 作为属性通过来自另一个 View Controller 的 segue 传递,用户在图像上涂鸦。我无法调整/缩放图像以适应接收 View Controller 中的 UIView。无论我尝试什么,它都会越过屏幕。

这是我在 viewDidLoad()

中尝试过的一些零成功的例子
incomingImgView?.frame = CGRect(x: 0, y: 0, width: view.bounds.width  , height:  view.bounds.height)
// incomingImgView?.frame = CGRect(x: 0, y: 0, width: 100 , height: 100)

incomingImgView?.contentMode = .scaleAspectFit

incomingImgView?.clipsToBounds = true

//incomingImgView?.frame = view.bounds
viewContainer.addSubview(incomingImgView!)


// incomingImgView?.image?.scaleImage(toSize: CGSize(width: 100, height: 100))
// incomingImgView?.layoutIfNeeded()

view.layoutIfNeeded()

最佳答案

请试试这个:

 incomingImgView?.frame = CGRect(x: 0, y: 0, width: viewContainer.bounds.width  , height:  viewContainer.bounds.height)

关于ios - 调整 UIImageView 的大小以适应屏幕,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41590055/

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