gpt4 book ai didi

foreach - 如何在例如分配变量SwiftUI 中的 ForEach?

转载 作者:行者123 更新时间:2023-12-04 12:24:41 30 4
gpt4 key购买 nike

是否可以在 SwiftUI 中设置变量,例如在这样的 ForEach 中:

struct ContentView: View {
var test: Int

var body: some View {

List {
ForEach(1...5, id: \.self) {
Text("\($0)…")

test = $0 // how to realise this?
}
}

}
}

我无法让它生效,我收到如下错误:
Unable to infer complex closure return type; add explicit type to disambiguate

最佳答案

您不能分配给 test来自您内部任何地方的任何东西 ContentView ,因为它是结构体,所以,self是不可变的,但您将能够执行以下操作:

struct ContentView: View {
// var test: Int // cannot be assigned, because self is immutable

var body: some View {
List {
ForEach(1...5, id: \.self) { (i) -> Text in
let test = i // calculate something intermediate
return Text("\(test)…")
}
}
}
}

关于foreach - 如何在例如分配变量SwiftUI 中的 ForEach?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60635124/

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