In Swift, i cant cast Int to String by:
var iString:Int = 100 var strString = String(iString)
But my variable in Int? , there for error:
Crude perhaps, but you could just do:
let int100 = 100 println(int100.description) //Prints 100