如何创建一个覆盖整个屏幕(包括导航控制器)的隐形按钮?
我有一个简单的表格视图,可以使用导航控制器导航到详细视图。在详细视图中,我需要创建一个按钮,按下该按钮会隔离屏幕上显示的所有其他按钮,包括导航控制器后退按钮。我知道如何让隐形按钮覆盖屏幕上的大多数按钮,但我无法让它覆盖导航控制器后退按钮,因为这是在父视图中创建的。如何从详细视图将其弹出到导航控制器的顶部?
I have a simple tableview that navigates to a detailed view with a navigation controller. In the detailed view I need to create a button which when pressed isolates all other buttons displayed on the screen including the navigation controller back button. I know how to get the invisible button to cover most of buttons the screen but I can't get it to cover the navigation controller back button as this has been created in the parent view. How do I pop it over the top of the navigation controller from the detail view?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以将按钮插入为关键窗口的直接子视图。
(为什么不使用 UIAlertView 或 UIActionSheet?)
You can insert the button as a direct subview of the key window.
(why not use an UIAlertView or UIActionSheet?)