ios - 如何移动到特定的 UI 视图控制器
在我的应用程序中,我有一个标签栏。 UI 标签栏控制器
有五个索引。每个索引由 5 个 UI 视图控制器
组成。
在某些情况下,如果我单击按钮,我想打开放置在选项卡栏第 0 个索引中的特定视图控制器。
如何直接单独打开那个视图控制器,请朋友们帮助我......
in my app i have a tabbar. The UI tabbar controller
has five indexes. Each indexes consists of 5 UI view controllers
.
In some conditions if i click a button i want to open a particular view controller placed in the 0th index of the tab bar.
How to open that view controller alone directly, pls help me friends....
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以通过推送通知发送要选择的选项卡的索引(请参阅此处 http://developer.apple.com/library/ios/#documentation/NetworkingInternet/Conceptual/RemoteNotificationsPG/ApplePushService/ApplePushService.html#//apple_ref/doc/uid/TP40008194-CH100-SW1 了解更多信息)
You can send the index of the tab you want to select with your push notification (see here http://developer.apple.com/library/ios/#documentation/NetworkingInternet/Conceptual/RemoteNotificationsPG/ApplePushService/ApplePushService.html#//apple_ref/doc/uid/TP40008194-CH100-SW1 for more info)
首先将视图作为子视图添加到选项卡栏,然后在需要的地方隐藏和显示视图
first add a view as subview to the tabbar and then hide and show the view whereever you needs