如何在swiftUI中选择项目时对选择器添加动作?

问题描述 投票:0回答:1

我有一个带有特定项目列表的选择器(例如-添加,编辑,删除),并且在选择特定项目时,我需要移至另一个屏幕。我尝试了onTapGuesture(),但在调试相同控件时并没有进入控件内部。

swiftui picker
1个回答
0
投票

我发现了三种不同的方法来实现这一目标。我拿的最后一个是here。因此,有所有这些方法,您可以选择所需的方法:

struct PickerOnChange: View {

    private var options = ["add", "edit", "delete"]
    @State private var selectedOption = 0
    @State private var choosed = 0

    var body: some View {

        VStack {

            Picker(selection: $selectedOption.onChange(changeViewWithThirdWay), label: Text("Choose action")) {
                ForEach(0 ..< self.options.count) {
                    Text(self.options[$0]).tag($0)
                }
            }.pickerStyle(SegmentedPickerStyle())

            // MARK: first way
            VStack {
                if selectedOption == 0 {
                    Text("add (first way)")
                } else if selectedOption == 1 {
                    Text("edit (first way)")
                } else {
                    Text("delete (first way)")
                }

                Divider()

                // MARK: second way
                ZStack {

                    AddView()
                        .opacity(selectedOption == 0 ? 1 : 0)

                    EditView()
                        .opacity(selectedOption == 1 ? 1 : 0)

                    DeleteView()
                        .opacity(selectedOption == 2 ? 1 : 0)
                }

                Divider()

                // MARK: showing third way
                Text("just to show, how to use third way: \(self.choosed)")

                Spacer()

            }

        }

    }

    func changeViewWithThirdWay(_ newValue: Int) {
        print("will change something in third way with: \(choosed), you can do everything in this function")
        withAnimation {
            choosed = newValue
        }

    }

}

// MARK: the third way
extension Binding {
    func onChange(_ handler: @escaping (Value) -> Void) -> Binding<Value> {
        return Binding(
            get: { self.wrappedValue },
            set: { selection in
                self.wrappedValue = selection
                handler(selection)
        })
    }
}

您将通过代码段实现这一点:

enter image description here

© www.soinside.com 2019 - 2024. All rights reserved.