gpt4 book ai didi

foreach - 如何在 SwiftUI 中 CoreData 生成的 NSSet 上使用 ForEach

转载 作者:行者123 更新时间:2023-12-03 14:23:11 24 4
gpt4 key购买 nike

我生成了一个具有一些一对多关系的 CoreData 模型。现在我想在这个关系上使用一个 ForEach,它是一个 NSSet ,然后我收到以下错误:

Generic struct 'ForEach' requires that 'NSSet' conform to 'RandomAccessCollection'

我的代码如下所示:
struct DetailView: View {
var sample: Sample

var body: some View {
VStack {
ForEach(sample.stepps!, id: \.self) { step in
...
}
}
}
}

如何解决这个问题?

最佳答案

这是可能的方法

ForEach(Array(sample.stepps! as Set), id: \.self) { step in
// step is NSObject type, so you'll need it cast to your model
}

关于foreach - 如何在 SwiftUI 中 CoreData 生成的 NSSet 上使用 ForEach,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60900700/

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