实例方法
context
contextMenu(menuItems:)
将上下文菜单添加到视图。
声明
func contextMenu<MenuItems>(menuItems: () -> MenuItems) -> some View where MenuItems : View
返回值
可以显示上下文菜单的视图。
参数
menuItems
产生菜单内容的闭包。您可以通过从闭包中不返回任何内容来停用上下文菜单。
详述
使用此修饰符将上下文菜单添加到应用程序用户接口中的视图。通过从 menuItems
闭包返回 Button
、 Toggle
和 Picker
等控件来组合菜单。您还可以使用Menu
定义子菜单或使用Section
对项目进行分组。
下面的示例创建一个 Text
视图,该视图具有一个带有两个按钮的上下文菜单:
Text("Turtle Rock")
.padding()
.contextMenu {
Button {
// Add this item to a list of favorites.
} label: {
Label("Add to Favorites", systemImage: "heart")
}
Button {
// Open Maps and center it on this item.
} label: {
Label("Show in Maps", systemImage: "mappin")
}
}
人们可以通过 Control-clicking 之类的操作来激活菜单,或者在 iOS 和 iPadOS 中使用触摸并按住手势:
如果有人做出选择,或者在菜单外点击或点击,系统将关闭菜单。
如果要在菜单旁边显示预览,请使用 View/contextMenu(menuItems:preview:)
。要将上下文菜单添加到支持选择的容器(如 List
或 Table
),并区分选择时的菜单激活和容器空白区域中的激活,请使用 View/contextMenu(forSelectionType:menu:)
。
可用版本
iOS 13.0+, iPadOS 13.0+, macOS 10.15+, Mac Catalyst 13.0+, tvOS 14.0+, watchOS 6.0-7.0 Deprecated
相关用法
- Swift Optional contentShape(_:_:eoFill:)用法及代码示例
- Swift Optional controlSize(_:)用法及代码示例
- Swift Optional contrast(_:)用法及代码示例
- Swift Optional containerShape(_:)用法及代码示例
- Swift Optional confirmationDialog(_:isPresented:titleVisibility:presenting:actions:message:)用法及代码示例
- Swift Optional confirmationDialog(_:isPresented:titleVisibility:presenting:actions:)用法及代码示例
- Swift Optional confirmationDialog(_:isPresented:titleVisibility:actions:)用法及代码示例
- Swift Optional confirmationDialog(_:isPresented:titleVisibility:actions:message:)用法及代码示例
- Swift Optional colorMultiply(_:)用法及代码示例
- Swift Optional cornerRadius(_:antialiased:)用法及代码示例
- Swift Optional colorInvert()用法及代码示例
- Swift Optional coordinateSpace(name:)用法及代码示例
- Swift Optional compositingGroup()用法及代码示例
- Swift Optional clipShape(_:style:)用法及代码示例
- Swift Optional clipped(antialiased:)用法及代码示例
- Swift Optional symbolVariant(_:)用法及代码示例
- Swift Optional popover(isPresented:attachmentAnchor:arrowEdge:content:)用法及代码示例
- Swift Optional mask(alignment:_:)用法及代码示例
- Swift Optional listSectionSeparatorTint(_:edges:)用法及代码示例
- Swift Optional badge(_:)用法及代码示例
- Swift Optional fullScreenCover(isPresented:onDismiss:content:)用法及代码示例
- Swift Optional keyboardType(_:)用法及代码示例
- Swift Optional preferredColorScheme(_:)用法及代码示例
- Swift Optional background(_:ignoresSafeAreaEdges:)用法及代码示例
- Swift Optional saturation(_:)用法及代码示例
注:本文由纯净天空筛选整理自apple.com大神的英文原创作品 Optional contextMenu(menuItems:)。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。