我有一个UITabbarController系统和一些远离标签栏系统的其他视图控制器.我的问题是我可以使用按钮将其中一个视图控制器链接回UITabbarController上的某个页面吗?
解决方法 UITabbarController是父级,选项卡下的VIEwControllers是子级.您可以使用parentVIEwController属性从childVIEwControllers访问TabbarController.因此,如果你有一个带有2个选项卡的UITabbarController,它们包含VIEwController1和VIEwController2,你可以在其中任何一个中使用这一行.
UITabbarController* tabbarController = (UITabbarController*)self.parentVIEwController;// So if for example you have a button in VIEwController2 and you need to show// VIEwController1 when it is pressed,you can do the followingtabbarController.selectedindex = 0;总结
以上是内存溢出为你收集整理的xcode – 从UIViewcontroller链接到UITabBarController页面全部内容,希望文章能够帮你解决xcode – 从UIViewcontroller链接到UITabBarController页面所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)