当点击屏幕上菜单以外的地方时,UIMenuController 消失

发布于 2024-09-06 03:17:06 字数 189 浏览 6 评论 0原文

我正在使用 UIMenuController,单击屏幕时它会消失。当我显示菜单时,我需要等待用户在菜单消失之前选择一个项目,但如果单击屏幕上的任意位置(而不是菜单栏上),菜单仍然会淡出。有什么办法可以防止这种情况发生吗?

它可能与 UIResponder 类有关吗?我一直在阅读此内容,但我不确定我是否完全理解响应者的概念。

谢谢。

I'm working with the UIMenuController and it disappears when the screen is clicked. When I show the menu I need to wait for the user to select an item before the menu fades away but if the click anywhere on the screen (not on the menu bar) the menu will still fade out. Is there any way to prevent this?

Does it possibly have something to do with the UIResponder class? I've been reading up on this but I'm not so sure I totally understand the responder concept yet.

Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

笑梦风尘 2024-09-13 03:17:06

您可以监听 UIMenuControllerWillHideMenuNotification 的通知。

向右滚动到本页末尾:Apple 设备功能编程指南
还有一个部分“关闭编辑菜单”。

此代码使其可见:

[UIMenuController sharedMenuController].menuVisible = YES;

You can listen for the Notification of UIMenuControllerWillHideMenuNotification.

Scroll right to the end of this page: Apple's Device Features Programming Guide
and there's a section "Dismissing the Editing Menu".

This code keeps it visible:

[UIMenuController sharedMenuController].menuVisible = YES;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文