在 UITabBar 应用程序中旋转一个 UIViewController
我有 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
没有简单的方法可以让一个视图处于横向模式,而其他视图处于横向模式,也没有一种简单的方法可以以编程方式切换到横向模式。
一种可能的方法是使用
CGAffineTransform
来转换viewWillAppear
中的视图(即在显示视图之前):希望这对您有用。
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 yourviewWillAppear
(i.e., right before the view is shown):Hope this works for you.
仅当它是模态的,如果它是 tabBarController 的一部分,您需要支持所有控制器的方向更改
Only if it's modal, if it's part of the tabBarController, you need to support orientation change for all your controller