美文网首页
swift String和CGFloat互转

swift String和CGFloat互转

作者: 荒漠现甘泉 | 来源:发表于2019-04-11 13:21 被阅读0次

    1.CGFload转换成String

    let screenBoundsStr = String.init(format: "%.2f", width*scale) + String.init(format: "%.2f", height*scale)
    

    2.String 转化成CGFloat

    思路:先将string通过Double(string) 转化成doubleValue,再转化成CGFloat类型,代码如下:

    func StringToFloat(str:String)->(CGFloat){
    
    
    
            let string = str
    
            var cgFloat:CGFloat = 0
    
            
            if let doubleValue = Double(string)
            {
    
                cgFloat = CGFloat(doubleValue)
    
            }
    
            return cgFloat
    
     }
    

    相关文章

      网友评论

          本文标题:swift String和CGFloat互转

          本文链接:https://www.haomeiwen.com/subject/qortwqtx.html