gpt4 book ai didi

swift - 如何在 Swift 中使用 CGFloat?

转载 作者:IT王子 更新时间:2023-10-29 05:13:54 26 4
gpt4 key购买 nike

var posinonY:Float = Float(y) + Float(pipeDown.size.height) + Float(verticalPipeGap)
pipeDown.position = CGPointMake(0.0, Float(posinonY))

我收到这个错误:

"NSNumber' is not a subtype of 'CGFloat'"

为什么?


编辑:

CGFLoat 需要 double 类型

pipeDown.position = CGPointMake(0.0,  Double(posinonY))

没关系。

最佳答案

使用 CGFloat(number) 而不是 Float(number)

pipeDown.position = CGPointMake(0.0, CGFloat(posinonY))

关于swift - 如何在 Swift 中使用 CGFloat?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24009876/

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