如何创建在选项卡之间切换时保持在屏幕上的视图(显示平衡)?

发布于 2025-01-01 18:42:44 字数 224 浏览 1 评论 0原文

我有一个 UITabBarController ,其中有 5 个不同的项目,每个项目代表不同的视图。这些视图代表拨号盘、联系人、通话历史记录等。按照标准,选择不同的选项卡会切换到不同的 UIViewController 并显示不同的视图。

但是,我想显示一个持久视图,当在选项卡栏上进行不同的选择时,该视图不会切换。我怎样才能显示这样一个始终保留在屏幕上的视图? 我正在使用基于视图的应用程序

I have a UITabBarController with 5 different items, each representing different views. These views represent a dialpad, contacts, call history, etc. Selecting a different tab switches to a different UIViewController and displays a different view, as is standard.

However, I'd like to display a persistent view that does not switch when different selections are made on the tab bar. How can I display such a view that remains onscreen at all times?
I am using View based application

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

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

发布评论

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

评论(1

音栖息无 2025-01-08 18:42:44

如果需要在整个应用程序中保持可见的任何视图,应将其添加到 UIWindow 中

在特定屏幕中显示视图

yourView.alpha =1.0;
    [window bringSubviewToFront:yourView];

,然后使用隐藏视图

YourView.alpha = 0.0;

if any view which need to be remain visible throughout the app, should be added to UIWindow

And Then to show view in particular screen use

yourView.alpha =1.0;
    [window bringSubviewToFront:yourView];

Hide View

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