第一种:
1 通过self.view获取window
self.view.window.rootViewController = tabBarC;
第二种:
2 通过APPDelegate对象获取window
AppDelegate *appdelegate = [UIApplication sharedApplication].delegate;
appdelegate.window.rootViewController = tabBarC;
第三种:
3 直接获取
[UIApplication sharedApplication].keyWindow.rootViewController = tabBarC;
网友评论