编辑:这已在 iOS 13.3 中修复!
最小的可重现示例(Xcode 11.2 beta,这适用于 Xcode 11.1):
struct Parent: View {
var body: some View {
NavigationView {
Text("Hello World")
.navigationBarItems(
trailing: NavigationLink(destination: Child(), label: { Text("Next") })
)
}
}
}
struct Child: View {
@Environment(\.presentationMode) var presentation
var body: some View {
Text("Hello, World!")
.navigationBarItems(
leading: Button(
action: {
self.presentation.wrappedValue.dismiss()
},
label: { Text("Back") }
)
)
}
}
struct ContentView: View {
var body: some View {
Parent()
}
}
问题似乎在于将我的NavigationLink
内部放置在navigationBarItems
嵌套在根视图为NavigationView
. 崩溃报告表明我试图弹出一个视图控制器,当我向前导航到Child
然后返回到Parent
.
Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'Tried to pop to a view controller that doesn't exist.'
*** First throw call stack:
如果我将其放置NavigationLink
在如下视图的主体中,它就可以正常工作。
struct Parent: View {
var body: some View {
NavigationView {
NavigationLink(destination: Child(), label: { Text("Next") })
}
}
}
这是 SwiftUI 错误还是预期行为?
编辑:我已经在他们的带有 ID 的反馈助手中向 Apple 提出了一个问题,FB7423964
以防 Apple 的任何人关心:)。
编辑:我在反馈助手中的公开票表明有 10 多个类似的报告问题。他们已将分辨率更新为Resolution: Potential fix identified - For a future OS update
. 手指交叉,修复很快就会着陆。