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上下文菜单?
基础教程推荐
猜你喜欢
- libGDX 从精灵或纹理中获取像素颜色 2022-01-01
- 通过重定向链接在 Google Play 中打开应用 2022-01-01
- Android:getLastKnownLocation(LocationManager.NETWORK_PROVIDER 2022-01-01
- iPhone - 获取给定地点/时区的当前日期和时间并将其与同一地点的另一个日期/时间进行比较的正确方法 2022-01-01
- 如何从 logcat 中删除旧数据? 2022-01-01
- iOS4 创建后台定时器 2022-01-01
- NSString intValue 不能用于检索电话号码 2022-01-01
- navigator.geolocation.getCurrentPosition 在 Android 浏览器上 2022-01-01
- Cocos2d iPhone 非矩形精灵触摸检测 2022-01-01
- AdMob 广告未在模拟器中显示 2022-01-01
