Convert String to CGFloat in Swift

后端 未结 12 1170
长情又很酷
长情又很酷 2021-02-03 17:05

I\'m new to Swift, how can I convert a String to CGFloat?

I tried:

var fl: CGFloat = str as CGFloat
var fl: CGFloat = (CGFloat)str
var fl: CGFloat = CGFl         


        
12条回答
  •  余生分开走
    2021-02-03 17:21

    in Swift 3.0

    if let n = NumberFormatter().number(from: string) {
      let f = CGFloat(n)
    }
    

    or this if you are sure that string meets all requirements

    let n = CGFloat(NumberFormatter().number(from: string)!)
    

提交回复
热议问题