获取视图控制器window的三种方式

第一种:

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;

你可能感兴趣的:(获取视图控制器window的三种方式)