在显示 UITabBar 之前显示视图
我需要在显示基于选项卡的应用程序之前显示一个视图,一旦用户点击按钮,视图就会消失。 有什么想法吗?
I need to display a view before I display a tab based app and once the user taps a button the view goes away.
Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这是演示该过程的一些代码。您可以将此代码粘贴到应用程序委托中来运行。请注意,这是意大利面条式代码,但我这样做是为了让您可以在一个地方看到所有步骤。通常,您会将部分代码放入其自己的视图控制器和类中。
这是在 appdelegate 中。请注意,这还没有完全测试泄漏和其他内容。它只是一个示例。
here is some code that demonstrates the process. You can paste this code into the app delegate to run. Note, that this is spaghetti code, but I did it this way so you can see all the steps in one place. Normally, you will put parts of this code into its own view controller and classes.
this is in the appdelegate.. note that this is not completely tested for leaks and stuff.. its meant for an example.
使用 UIViewController。使用选项卡栏控制器将该控制器呈现为模态视图。之后关闭视图控制器以隐藏它
Use a UIViewController. Present that controller as a modal view with the tab bar controller. Dismiss the view controller after that to hide it