如何创建一个覆盖整个屏幕(包括导航控制器)的隐形按钮?

发布于 2024-08-27 20:14:31 字数 160 浏览 7 评论 0原文

我有一个简单的表格视图,可以使用导航控制器导航到详细视图。在详细视图中,我需要创建一个按钮,按下该按钮会隔离屏幕上显示的所有其他按钮,包括导航控制器后退按钮。我知道如何让隐形按钮覆盖屏幕上的大多数按钮,但我无法让它覆盖导航控制器后退按钮,因为这是在父视图中创建的。如何从详细视图将其弹出到导航控制器的顶部?

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 技术交流群。

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

发布评论

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

评论(1

一张白纸 2024-09-03 20:14:31

您可以将按钮插入为关键窗口的直接子视图。

[[UIApplication sharedApplication].keyWindow addSubview:theButton];

(为什么不使用 UIAlertView 或 UIActionSheet?)

You can insert the button as a direct subview of the key window.

[[UIApplication sharedApplication].keyWindow addSubview:theButton];

(why not use an UIAlertView or UIActionSheet?)

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