我正在使用Swift 3,我试图将用户输入分成2个不同的字符串。我看起来到处都是,我看起来说,对于swift 3,我应该使用:
String.components(separatedBy: " ").
但是当我在我的代码中使用它时:
let userInput = readLine()
let arrayOfInput = userInput!.components(separatedBy: ", ")
然后在编译时,我发出错误说
Value of type 'String' has no member 'components'
为什么会这样,我该如何解决?