如何将已经开发的应用程序更改为横向和纵向两个方向?
我以纵向模式开发了应用程序(导航+标签栏)。
但现在我希望如果用户将其方向更改为横向或 纵向,则所有内容都应沿该方向旋转。
I developed app(navigation + tabbar) in portrait mode.
But now I want that if user change its orientation to landscape or
portrait then all should be rotate in that orientation.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要设置每个视图的控件autoresizingmask。您可以通过 xib 以及根据需要的代码来完成此操作,并在所有 viewController 中添加以下方法,它应该可以工作。
希望这有帮助。
You need to set each view's control autoresizingmask. You can do it through xib as well as code as per your need and add below method in all viewControllers and it should work.
Hope this help.
并查看您的“.plist”,您可以在此处定义“支持的界面方向”(UISupportedInterfaceOrientations)。
And have a look into your ".plist", you can define "Supported interface orientations" (UISupportedInterfaceOrientations) here.