我正在使用以下代码在 WatchOS 上生成情况
struct Modal : View {
@Binding var showingModal : Bool
init(showingModal : Binding<Bool>){
self._showingModal = showingModal
print("init modal")
}
var body: some View {
Button(action: {
self.showingModal.toggle()
}, label: {
Text("TTTT")
})
}
}
struct ContentView: View {
@State var showingModal = false
var body: some View {
Button(action: {
self.showingModal.toggle()
}, label: {
Text("AAAA")
}).sheet(isPresented: $showingModal, content: {Modal(showingModal: self.$showingModal)})
}
}
每次我按下主 View 中的按钮以使用 .sheet 调用模态时,都会创建模态视图的两个实例。
有人可以解释这种现象吗?
最佳答案
我在我的代码中跟踪到在我的 View 中有以下行:
@Environment(\.presentationMode) var presentation
由于 https://stackoverflow.com/a/61311279/155186 我一直在这样做,但由于某种原因,这个问题似乎对我来说已经消失了,所以我想我不再需要它了。
我已就此向 Apple 提交了反馈 FB7723767。
关于ios - 为什么在 SwiftUI 中,当用 .sheet 呈现模态视图时,init() 被调用两次,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/60315404/