如何在选项卡栏应用程序上呈现模态视图?

发布于 2024-09-13 09:48:33 字数 261 浏览 5 评论 0原文

我对 iPhone 编程还比较陌生,但已经读过一本厚厚的书了。

我想构建一个选项卡式应用程序,在其中一个选项卡中我可以按下一个按钮,在屏幕上呈现模式视图。

我已经构建了利用 UITabBarController 和 ModalView 系统的演示应用程序,但我不知道如何组合它们。

非常感谢您的帮助。我真的很困惑,因为这种视图设置是我唯一不知道如何使用我的应用程序做的事情。如果您能给我一个有关设置外观的概要(示例代码),那就太棒了。

谢谢你!

I'm relatively new to iPhone programming but have read my way through a hefty book already.

I want to build a Tabbed Application where in one of the tabs I can push a button that presents a modal view over the screen.

I have built demo apps that utilize UITabBarController and the ModalView system, but I can't figure out how to combine them.

Help is greatly appreciated. I'm really stuck because it's this set up of the views that's the only thing I don't know how to do with my app. If you could give me a rundown (sample code) of how the setup should look, that would be fantastic.

thank you!

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

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

发布评论

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

评论(1

比忠 2024-09-20 09:48:33

您可以使用以下代码从选项卡栏控制器的选项卡之一显示模式视图控制器。

UIViewController* vc = [[[UIViewController alloc] init] autorelease];
[self presentModalViewController:vc animated:YES]

这将导致视图控制器以模态方式显示在选项卡栏上。

You can show a display a modal view controller from one of the tabs of your tab bar controller using the following code.

UIViewController* vc = [[[UIViewController alloc] init] autorelease];
[self presentModalViewController:vc animated:YES]

That will cause the View Controller to be displayed modally over the tab bar.

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