如何在选项卡栏应用程序上呈现模态视图?
我对 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用以下代码从选项卡栏控制器的选项卡之一显示模式视图控制器。
这将导致视图控制器以模态方式显示在选项卡栏上。
You can show a display a modal view controller from one of the tabs of your tab bar controller using the following code.
That will cause the View Controller to be displayed modally over the tab bar.