如何在IOS 8中强制查看控制器方向?
[[UIApplication sharedApplication] setStatusBarOrientation:UIInterfaceOrientationLandscapeRight animated:YES]; UIViewController *c = [[UIViewController alloc]init];[self presentViewController:vc animated:NO completion:nil]; [self dismissViewControllerAnimated:NO completion:nil];
第一视图控制器
第二视图控制器
第三视图控制器
shouldAutorotate
supportedInterfaceOrientations
-(NSUInteger)supportedInterfaceOrientations{ return UIInterfaceOrientationMaskLandscapeRight;}-(BOOL)shouldAutorotate { return NO;}
阿波罗的战车
温温酱