Xcode 7.0 beta 4未检测到swift 2.0

时间:2015-09-11 11:12:44

标签: ios xcode swift2

我已经安装了Xcode 7.0 beta 4但是,我认为Xcode能够在我的代码中检测到swift 2.0功能

    let array = ["1", "2", "3"]
    let stringRepresentation = array.joinWithSeparator("-")
    print(stringRepresentation)

Xcode显示错误" ' [字符串]'没有名为' joinWithSeparator'"的成员,如下图所示

enter image description here

当我跑步时,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代码。

2 个答案:

答案 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