在 UITabBar 应用程序中旋转一个 UIViewController

发布于 2024-11-09 16:17:07 字数 65 浏览 0 评论 0原文

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

I have uitabbar application and I Want to rotate just one ViewController with chart in landscape mode. It's possible to do that?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

缱倦旧时光 2024-11-16 16:17:07

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

一种可能的方法是使用 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];
}

希望这对您有用。

There is no easy way to have only one view in landscape mode, while the others are in landscape, nor an easy way to programmatically switch to landscape mode.

One possible approach would be using a CGAffineTransform to transform your view in your viewWillAppear (i.e., right before the view is shown):

- (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];
}

Hope this works for you.

心舞飞扬 2024-11-16 16:17:07

仅当它是模态的,如果它是 tabBarController 的一部分,您需要支持所有控制器的方向更改

Only if it's modal, if it's part of the tabBarController, you need to support orientation change for all your controller

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文