gpt4 book ai didi

ios - 如何将CGRect转换为CGPoint iOS Swift

转载 作者:行者123 更新时间:2023-12-01 15:57:39 25 4
gpt4 key购买 nike

在这里我想将UIImageViewmaxY CGRect值转换为CGPoint,但是当我尝试将CGRect值转换为CGPoint时遇到错误。

  • 代码
  • let cgPoint = imgPin.convert(imgPin.frame.minY, to: self.view)
  • 错误

  • 表达式类型'@lvalue CGRect'不明确,没有更多上下文

    最佳答案

    您必须传递CGPoint而不是CGFloat,如下所示,

    // set x, y as per your requirements.
    let point = CGPoint(x: imgPin.frame.minX, y: imgPin.frame.minY)
    let cgPoint = imgPin.convert(point, to: self.view)



    您可以按原样传递 CGRect,并获得点 origin
    let cgPoint = v.convert(imgPin.frame, to: self.view).origin

    关于ios - 如何将CGRect转换为CGPoint iOS Swift,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57652211/

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