imzyf / ios-swift-learning-notes

📝 iOS Swift Learning Notes - see Issues
MIT License
0 stars 0 forks source link

String 2 Int #45

Closed imzyf closed 6 years ago

imzyf commented 6 years ago

https://stackoverflow.com/questions/24115141/swift-converting-string-to-int

let myString = "556"
let myInt = Int(myString)
imzyf commented 6 years ago

i see