1

考虑以下视图代码:

Text("Something")
.contextMenu {
    // Some menu options
}

这工作正常。我想做的:通过视图修饰符间接呈现 contextMenu。像这样的东西:

Text("Something")
.modifier(myContextMenu) {
    // Some menu options
}

为什么:我需要在修饰符内部做一些逻辑来有条件地显示或不显示菜单。我无法为它计算出正确的视图修饰符签名。

还有另一个 contextMenu 修饰符可用,它声称我可以有条件地为其呈现上下文菜单。尝试此操作后,这对我没有帮助,因为一旦我将 contextMenu 修饰符添加到 iOS 上的 NavigationLink,其上的点击手势就会停止工作。在下面的回复中有讨论。

如何使用视图修饰符呈现上下文菜单?

4

3 回答 3

2

这是可选上下文菜单用法的演示(使用 Xcode 11.2 / iOS 13.2 测试)

在此处输入图像描述

struct TestConditionalContextMenu: View {
    @State private var hasContextMenu = false
    var body: some View {
        VStack {
            Button(hasContextMenu ? "Disable Menu" : "Enable Menu")
                { self.hasContextMenu.toggle() }
            Divider()
            Text("Hello, World!")
                .background(Color.yellow)
                .contextMenu(self.hasContextMenu ?
                    ContextMenu {
                            Button("Do something1") {}
                            Button("Do something2") {}
                    } : nil)
        }
    }
}
于 2020-01-26T05:30:23.603 回答
2

像这样的东西?

Text("Options")
        .contextMenu {
            if (1 == 0) { // some if statements here
                Button(action: {
                    //
                }) {
                    Text("Choose Country")
                    Image(systemName: "globe")
                }
            }
    }
于 2020-01-26T00:56:04.940 回答
1

这就是我想出的。不完全满意,它可能更紧凑,但它可以按预期工作。

struct ListView: View {    
    var body: some View {
        NavigationView {
            List {
                NavigationLink(destination: ItemView(item: "Something")) {
                    Text("Something").modifier(withiOSContextMenu())
                }.modifier(withOSXContextMenu())
            }
        }
    }
}

struct withOSXContextMenu: ViewModifier {
    func body(content: Content) -> some View {
        #if os(OSX)
        return content.contextMenu(ContextMenu {
            ContextMenuContent()
        })
        #else
        return content
        #endif
    }
}

struct withiOSContextMenu: ViewModifier {
    func body(content: Content) -> some View {
        #if os(iOS)
        return content.contextMenu(ContextMenu {
            ContextMenuContent()
        })
        #else
        return content
        #endif
    }
}

func ContextMenuContent() -> some View {
    Group {
        Button("Click me") {
            print("Button clicked")
        }
        Button("Another button") {
            print("Another button clicked")
        }
    }
}


于 2020-02-04T09:07:25.053 回答