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 String.  I'd like to do something like:
var stringNumb: String = "1357"
var someNumb: Int = Int(stringNumb)
This doesn't work either:
var someNumbAlt: Int = myString.integerValue
 
     
     
     
     
     
     
     
     
     
     
     
     
     
     
    