I'm trying to convert user input from a textField to an array. I followed the code that was offered here https://stackoverflow.com/a/27501398
let someString : String = someTextField.text!
let someArray = Array(someString).map { String($0).toInt()! }
But then I get this error:
Argument type "String" does not conform to expected type "Sequence"
What am I doing wrong?