Is there a documented way to set the iPhone orientation?

后端 未结 17 1311
清歌不尽
清歌不尽 2020-11-22 11:09

I have an app where I would like to support device rotation in certain views but other don\'t particularly make sense in Landscape mode, so as I swapping the views out I wou

17条回答
  •  一向
    一向 (楼主)
    2020-11-22 11:42

    iOS 6 solution:

    [[[self window] rootViewController] presentViewController:[[UIViewController alloc] init] animated:NO completion:^{
        [[[self window] rootViewController] dismissViewControllerAnimated:NO completion:nil];
    }];
    

    The exact code depends per app and also where you place it (I used it in my AppDelegate). Replace [[self window] rootViewController] with what you use. I was using a UITabBarController.

提交回复
热议问题