So I can do this:
var stringNumb: NSString = \"1357\" var someNumb: CInt = stringNumb.intValue
But I can\'t find the way to do it w/ a
You can bridge from String to NSString and convert from CInt to Int like this:
var myint: Int = Int(stringNumb.bridgeToObjectiveC().intValue)