如何以编程方式触发UIConextMenuInteraction上下文菜单? [英] How to trigger UIContextMenuInteraction context menu programmatically?

查看:37
本文介绍了如何以编程方式触发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上下文菜单?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆