成员'..<'的模糊引用 - 斯威夫特4

时间:2017-09-27 18:30:20

标签: swift4 xcode9

我正在使用String + Extensions窗格,我正在尝试将我的项目迁移到Xcode 9 + Swift 4,并且下面的函数开始给出错误对成员的模糊引用'..<'

func times(_ n: Int) -> String {
    return (0..<n).reduce("") { $0.0 + self }
}

如何解决?

1 个答案:

答案 0 :(得分:1)

请检查:

func times(_ n: Int) -> String {
    return (0..<n).reduce("") { (str1, str2) in str1 + self }
}