码迷,mamicode.com
首页 > 其他好文 > 详细

无敌获取控制器

时间:2016-07-21 19:30:04      阅读:192      评论:0      收藏:0      [点我收藏+]

标签:

swif:

let tabBarController: UITabBarController = UIApplication.sharedApplication().keyWindow?.rootViewController as! UITabBarController

 let nav: UINavigationController = tabBarController.selectedViewController as! UINavigationController

接下来就可以push出去

nav.pushViewController(vc, animated: true)

在你箱套太多层view情况下,或者xib情况下无法获取时,就可以使用,万能的

 

还可以这样子哦,获取你想要的tab

let tabBarController = UIApplication.sharedApplication().keyWindow?.rootViewController

  let nav = tabBarController?.childViewControllers

  let home:UINavigationController = nav![0] as! UINavigationController

 

 

OC:

UITabBarController *tabBarController = (UITabBarController *)self.window.rootViewController;

    UINavigationController * nav = tabBarController.selectedViewController;

 

    UIViewController *viewController = nav.viewControllers[0];

无敌获取控制器

标签:

原文地址:http://www.cnblogs.com/YangFuShun/p/5692562.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!