Convert Int to String in Swift
 I'm trying to work out how to cast an Int into a String in Swift.  
 I figure out a workaround, using NSNumber but I'd love to figure out how to do it all in Swift.  
let x : Int = 45
let xNSNumber = x as NSNumber
let xString : String = xNSNumber.stringValue
 Converting Int to String :  
let x : Int = 42
var myString = String(x)
 And the other way around - converting String to Int :  
let myString : String = "42"
let x: Int? = myString.toInt()
if (x != nil) {
    // Successfully converted String to Int
}
Or if you're using Swift 2 or 3:
let x: Int? = Int(myString)
检查下面的答案:
let x : Int = 45
var stringValue = "(x)"
print(stringValue)
在Swift 3.0中 :
var value: Int = 10
var string = String(describing: value)
上一篇: Swift:将一个字符串拆分成一个数组
下一篇: 将Int转换为Swift中的字符串
