问答详情
源自:4-3 Swift-导入Foundation使用更多字符串功能

关于join

为使用的是Xcode 7.1为什么如视频中一样,调用join方法会报错  “join is unavaliable:call the 'joinWhithSeparator()' method on the sequence of elements ”

提问者:weibo_芥稚子道长_0 2015-11-30 19:15

个回答

  • 泽济天下
    2015-12-02 17:32:34
    已采纳

    Xcode 7.1 中是这么用的

    var res=["welcome", "to", "learn", "ios", "programming"]

    var ss="-"

    res.joinWithSeparator("-")

    输出结果是 "welcome-to-learn-ios-programming"