How to trigger UIContextMenuInteraction context menu programmatically?(如何以编程方式触发UIConextMenuInteraction上下文菜单?)
本文介绍了如何以编程方式触发UIConextMenuInteraction上下文菜单?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我已将UIButton设置为UINavigationController内的UIView控制器中的rightBarButtonItem,并将iOS13上下文菜单与其关联。
长按按钮将按预期显示上下文菜单。
是否也可以通过点击按钮来显示上下文菜单(例如,通过添加.ouch chUpInside事件的目标)?
按钮/barButtonItem设置如下:
let button = UIButton(type: .system)
button.setImage(UIImage(systemName: "plus"), for: .normal)
let barButton = UIBarButtonItem(customView: button)
self.navigationItem.rightBarButtonItem = barButton
let interaction = UIContextMenuInteraction(delegate: self)
button.addInteraction(interaction)
上下文菜单定义如下:
extension ViewController: UIContextMenuInteractionDelegate {
func contextMenuInteraction(_ interaction: UIContextMenuInteraction, configurationForMenuAtLocation location: CGPoint) -> UIContextMenuConfiguration? {
return UIContextMenuConfiguration(identifier: nil, previewProvider: nil) { suggestedActions in
let importAction = UIAction(title: "Import", image: UIImage(systemName: "folder")) { action in }
let createAction = UIAction(title: "Create", image: UIImage(systemName: "square.and.pencil")) { action in }
return UIMenu(title: "", children: [importAction, createAction])
}
}
}
推荐答案
根据设计,当发生适当的手势(用力触摸或长按)时,系统会自动显示上下文菜单。您无法手动显示它。
发件人docs:
上下文菜单交互对象跟踪支持3D Touch的设备上的强制触摸手势,以及不支持3D Touch的设备上的长按手势。
UIKit管理所有与菜单相关的交互并将所选操作(如果有)报告给您的应用。
更新:
虽然在iOS 14中仍然不能手动显示上下文菜单,但现在可以将我们为上下文菜单创建的UIMenu
显示为pull-down menu。有关如何在iOS 14上执行此操作,请查看@Lobo's answer。
这篇关于如何以编程方式触发UIConextMenuInteraction上下文菜单?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
沃梦达教程
本文标题为:如何以编程方式触发UIConextMenuInteraction上下文菜单?


基础教程推荐
猜你喜欢
- 当从同一个组件调用时,两个 IBAction 触发的顺序是什么? 2022-01-01
- 如何让对象对 Cocos2D 中的触摸做出反应? 2022-01-01
- android 应用程序已发布,但在 google play 中找不到 2022-01-01
- 如何在 UIImageView 中异步加载图像? 2022-01-01
- UIWebView 委托方法 shouldStartLoadWithRequest:在 WKWebView 中等效? 2022-01-01
- 如何在没有IB的情况下将2个按钮添加到右侧的UINavigationbar? 2022-01-01
- Android:对话框关闭而不调用关闭 2022-01-01
- Kivy Buildozer 无法构建 apk,命令失败:./distribute.sh -m “kivy"d 2022-01-01
- 如何在 iPhone 上显示来自 API 的 HTML 文本? 2022-01-01
- 在 gmail 中为 ios 应用程序检索朋友的朋友 2022-01-01