gpt4 book ai didi

SwiftUI 和编译器无法在合理的时间内对该表达式进行类型检查

转载 作者:行者123 更新时间:2023-12-03 16:21:54 27 4
gpt4 key购买 nike

我正在尝试使用 SwiftUI 和核心数据实现 ListView ,但遇到“编译器无法在合理的时间内对该表达式进行类型检查”错误。该列表包含“类(class)”,每种“类型”的类(class)都会导致不同类型的游戏,但是,当我输入导致相关游戏链接的 if、else if 条件时会出现错误。我从其他帖子中了解到应该将代码分解为更简单的部分,但我想知道这样做的最佳方法是什么,尤其是对于条件语句。我尝试过的一种方法是使用特定的 @FetchRequests 一次提取一个特定的类(class),虽然这可以填充列表,但当实体从另一个 View 更新时会产生意外行为。有关该问题的更多详细信息,请参见此处:SwiftUI List View not updating after Core Data entity updated in another View .对于如何简化此代码或如何避免此错误的任何建议,我将不胜感激。顺便说一下,这个错误只有在使用核心数据时才会出现;当我通过使用 swift 文件中的类直接“硬编码”对象时,不会出现此错误。

import SwiftUI
import CoreData
import UIKit

struct LessonList: View {

@Environment(\.managedObjectContext) var moc
@FetchRequest(entity: Lesson.entity(), sortDescriptors: []) var lessons: FetchedResults<Lesson>

var body: some View {

NavigationView {

List {
Section(header: Text("Test")) {
ForEach(lessons) { lesson in
if (lesson.stage == 1) && (lesson.type == "phonicIntro") {
NavigationLink(destination: PhonicIntroGame(lesson: lesson)) {
LessonRow(lesson: lesson)
}
} else if (lesson.stage == 1) && (lesson.type == "phonicDrag") {
NavigationLink(destination: PhonicDragGame(lesson: lesson)) {
LessonRow(lesson: lesson)
}
}
}
}
}
.navigationBarTitle("Lessons")
}
}//end of body

最佳答案

这样的错误是一个很好的指标,可以将您的观点分解为更简单的部分,例如(唯一的想法,`因为我无法编译它)

ForEach(lessons) { lesson in
self.lessonRow(for: lesson)
}

...

private func lessonRow(for lesson: Lesson) -> some View {
Group {
if (lesson.stage == 1) && (lesson.type == "phonicIntro") {
NavigationLink(destination: PhonicIntroGame(lesson: lesson)) {
LessonRow(lesson: lesson)
}
} else if (lesson.stage == 1) && (lesson.type == "phonicDrag") {
NavigationLink(destination: PhonicDragGame(lesson: lesson)) {
LessonRow(lesson: lesson)
}
}
}
}

关于SwiftUI 和编译器无法在合理的时间内对该表达式进行类型检查,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60761216/

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