gpt4 book ai didi

swift - 无法将 'ClosedRange' 类型的值转换为预期的参数类型 'Range'

转载 作者:行者123 更新时间:2023-12-04 06:43:25 29 4
gpt4 key购买 nike

我有这个代码:

VStack {
ForEach(0...2) { i in
HStack {
ForEach(0...2) { j in
Text("test")
}
}
}
}

这给了我错误 Cannot convert value of type 'ClosedRange<Int>' to expected argument type 'Range<Int>'在两个 ForEach 语句上
我已经看到了有关此错误的线程,并且对范围事物的工作原理有所了解,但实际上并非如此。我想知道如何解决这个错误。

最佳答案

可以使用 ClosedRange但不同 ForEach构造函数,提供 id , 喜欢

    VStack {
ForEach(0...2, id: \.self) { i in
HStack {
ForEach(0...2, id: \.self) { j in
Text("test")
}
}
}
}

关于swift - 无法将 'ClosedRange<Int>' 类型的值转换为预期的参数类型 'Range<Int>',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63026176/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com