如何在 SwiftUI 中从 FetchedResults (CoreData) ForEach NSOrderedSet
How to ForEach in SwiftUI a NSOrderedSet from FetchedResults (CoreData)
我正在尝试在 SwiftUI 中使用 ForEach,我的 NSOrderedSet 来自 FetchedResult。
已经尝试了以下代码(来自此 )
withChilds 是定义的关系(核心数据 - 一张卡片有很多孩子)。
卡内:
@NSManaged public var withChilds: NSOrderedSet?
我的查看代码
struct Test: View {
@FetchRequest(entity: Card.entity(),
sortDescriptors: [],
predicate: nil)
var cards: FetchedResults<Card>
var body: some View {
VStack {
Text("count: \(cards[0].withChilds?.count)") //first entity on purpose
ScrollView {
ForEach(cards){ card in
ForEach(Array(card.withChilds!.set), id: \.self) { child in //**ERROR**
//Text("someText: \(child.text1)")
}
}
}
}
}
}
错误代码
突出显示的错误是因为ForEach
中没有指定视图,所以如果要定义一些静态的东西,比如
ForEach(Array(card.withChilds!.set), id: \.self) { child in
Text("Just test")
}
应该没有错误(用Xcode 11.4测试过)
但是没有指定 NSOrderedSet
里面的内容,所以如果假设它是 Child
class 的实例,那么下面的测试工作
ForEach(Array(card.withChilds!.set), id: \.self) { child in
Text("someText: \((child as! Child).text1)")
}
我正在尝试在 SwiftUI 中使用 ForEach,我的 NSOrderedSet 来自 FetchedResult。
已经尝试了以下代码(来自此
withChilds 是定义的关系(核心数据 - 一张卡片有很多孩子)。
卡内:
@NSManaged public var withChilds: NSOrderedSet?
我的查看代码
struct Test: View {
@FetchRequest(entity: Card.entity(),
sortDescriptors: [],
predicate: nil)
var cards: FetchedResults<Card>
var body: some View {
VStack {
Text("count: \(cards[0].withChilds?.count)") //first entity on purpose
ScrollView {
ForEach(cards){ card in
ForEach(Array(card.withChilds!.set), id: \.self) { child in //**ERROR**
//Text("someText: \(child.text1)")
}
}
}
}
}
}
错误代码
突出显示的错误是因为ForEach
中没有指定视图,所以如果要定义一些静态的东西,比如
ForEach(Array(card.withChilds!.set), id: \.self) { child in
Text("Just test")
}
应该没有错误(用Xcode 11.4测试过)
但是没有指定 NSOrderedSet
里面的内容,所以如果假设它是 Child
class 的实例,那么下面的测试工作
ForEach(Array(card.withChilds!.set), id: \.self) { child in
Text("someText: \((child as! Child).text1)")
}