Questions tagged «cgfloat»

3
在Swift中将CGFloat转换为Float
我需要将值存储为Float,但是源数据是CGFloat: let myFloat : Float = myRect.origin.x 但这会导致编译器错误:“ NSNumber”不是子类型“ Float” 因此,如果我明确地将其像这样进行投射: let myFloat : Float = myRect.origin.x as Float 但这反过来导致编译器错误:'无法将表达式的类型'Float'转换为'Float' 请问满足编译器要求的正确方法是什么?
91 casting  swift  cgfloat 

11
在0和1之间快速浮动
在Swift中,我试图获得0到1之间的随机浮点数,但是我似乎无法使类型转换正常工作。 func randomCGFloat() -> CGFloat { return CGFloat(arc4random()) / UINT32_MAX } 我收到“ CGFloat”无法转换为“ UInt8”错误 运行Xcode 6。

6
在Swift中汇总CGFloat
如何在Swift中汇总CGFloat?我已经尝试过了,ceil(CDouble(myCGFloat))但是只能在iPad Air和iPhone 5S上使用。 在另一台模拟设备上运行时,出现错误提示 'NSNumber' is not a subtype of 'CGFloat'
78 swift  rounding  cgfloat  ceil 
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.