我正在使用String + Extensions窗格,我正在尝试将我的项目迁移到Xcode 9 + Swift 4,并且下面的函数开始给出错误对成员的模糊引用'..<'。
func times(_ n: Int) -> String {
return (0..<n).reduce("") { $0.0 + self }
}
如何解决?
答案 0 :(得分:1)
请检查:
func times(_ n: Int) -> String {
return (0..<n).reduce("") { (str1, str2) in str1 + self }
}