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需要双重类型
pipeDown.position = CGPointMake(0.0,Double(posinonY))
还行吧。
使用CGFloat(数字)而不是Float(数字)
原文链接:https://www.f2er.com/swift/320365.htmlpipeDown.position = CGPointMake(0.0,CGFloat(posinonY))