当点击屏幕上菜单以外的地方时,UIMenuController 消失
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以监听 UIMenuControllerWillHideMenuNotification 的通知。
向右滚动到本页末尾:Apple 设备功能编程指南
还有一个部分“关闭编辑菜单”。
此代码使其可见:
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: