NavigationLink isActive在navigationBarItems(trailing :)修饰符

时间:2019-08-25 20:21:10

标签: swift swiftui

我正在使用最新版本的Xcode(11 Beta 16)和macOS(10.15 Beta 6)

我正在尝试创建两个视图。从第一个视图中,您应该能够通过尾随的导航栏项目导航到第二个视图,并向后导航,您应该能够使用系统生成的后退按钮(有效)和尾随的导航条按钮(其中具有一些其他功能,例如保存数据,但这对我的问题并不重要)。

选项1确实有效,但是如果您注释掉选项1和取消注释选项2(我想要的布局),则完成按钮不会返回。

struct ContentView1: View {
    @State var show = false

    var body: some View {
        NavigationView {
            Form {
                Text("View 1")
//          Option 1 that does work
                NavigationLink(destination: ContentView2(show: $show), isActive: $show) {
                    Text("Move")
                }
            }
            .navigationBarTitle(Text("Title"))
//          Option 2 that does NOT work
//            .navigationBarItems(trailing: NavigationLink(destination: ContentView2(show: $show), isActive: $show) {
//                Text("Move")
//            })
        }
    }
}

struct ContentView2: View {
    @Binding var show: Bool

    var body: some View {
        Form {
            Text("View 2")
            Text(show.description)
        }
        .navigationBarItems(trailing: Button(action: {
            self.show = false
        }, label: {
            Text("Done")
        }))
    }
}

任何建议如何解决该问题?

1 个答案:

答案 0 :(得分:4)

选项2与presentationMode的搭配很好:

struct ContentView2: View {
    @Environment(\.presentationMode) var presentationMode

    var body: some View {
        Form {
            Text("View 2")
        }
        .navigationBarItems(trailing: Button(action: {
            self.presentationMode.wrappedValue.dismiss()
        }, label: {
            Text("Done")
        }))
    }
}