我有uitabbar应用程序,我想在横向模式下只旋转一个带有图表的ViewController。有可能做到吗?

最佳答案

没有一种简单的方法可以使一个视图处于横向模式,而其他视图处于横向模式,也没有一种以编程方式切换至横向模式的简单方法。

一种可能的方法是使用CGAffineTransform转换viewWillAppear中的视图(即,在显示视图之前):

- (void)viewWillAppear:(BOOL)animated; {
   //-- Adjust the status bar
   [UIApplication sharedApplication].statusBarOrientation = UIInterfaceOrientationLandscapeRight;
   //-- Rotate the view
   CGAffineTransform toLandscape = CGAffineTransformMakeRotation(degreesToRadian(90));
   toLandscape = CGAffineTransformTranslate(toLandscape, +90.0, +90.0 );
   [self.view setTransform:toLandscape];
}


希望这对您有用。

08-16 23:34