在Swift中将CGFloat转换为字符串

hl0ma9xz  于 2022-12-03  发布在  Swift
关注(0)|答案(3)|浏览(278)

这是我目前在Swift中将CGFloat转换为String的方法:

let x:Float = Float(CGFloat)
let y:Int = Int(x)
let z:String = String(y)

有没有更有效的方法?

ar7v8xwq

ar7v8xwq1#

可以使用字符串插值:

let x: CGFloat = 0.1
let string = "\(x)" // "0.1"

或者从技术上讲,您可以直接使用CGFloat的可打印特性:

let string = x.description

description属性来自于它实现的Printable协议,该协议使字符串插值成为可能。

pw9qyyiw

pw9qyyiw2#

当下飞快道:

let x = CGFloat(12.345)
let s = String(format: "%.3f", Double(x))

更好的方法,因为它会照顾到语言环境:

let x = CGFloat(12.345)

let numberFormatter = NSNumberFormatter()
numberFormatter.numberStyle = .DecimalStyle
numberFormatter.minimumFractionDigits = 3
numberFormatter.maximumFractionDigits = 3

let s = numberFormatter.stringFromNumber(x)
c90pui9n

c90pui9n3#

这对我很有效let newstring = floatvalue.description

相关问题