我已经安装了Xcode 7.0 beta 4但是,我认为Xcode能够在我的代码中检测到swift 2.0功能
let array = ["1", "2", "3"]
let stringRepresentation = array.joinWithSeparator("-")
print(stringRepresentation)
Xcode显示错误" ' [字符串]'没有名为' joinWithSeparator'"的成员,如下图所示
当我跑步时,xcrun swift'在终端显示
Welcome to Apple Swift version 2.0 (700.0.47.1 700.0.59.1). Type :help for assistance.
1>
在这里我感到难过,无法运行swift 2.0代码。
答案 0 :(得分:2)
joinWithSeparator
出现在Xcode beta 6 中。
答案 1 :(得分:2)
Swift 2.0 Xcode 7.0 beta 6 以后使用
joinWithSeparator()
代替join():
但您可以使用join
let array = ["1", "2", "3"]
let stringRepresentation = "-".join(array)
print(stringRepresentation) //output- 1-2-3