修复 iPad 状态栏方向为纵向
我有一个带有简单标签栏的 iPad 应用程序。我需要将方向固定为纵向。我通过在 plist 文件的“支持的界面方向”字段中设置“纵向(底部主页按钮)”来实现这一点。
问题是旋转iPad时状态栏仍然移动......我该如何解决它?
感谢您的阅读。
I have an iPad application with a simple tab bar. I need to fix the orientation as portrait. I do that by setting "Portrait (bottom home button)" in the "Supported interface orientation" field in the plist file.
The problem is that the status bar still move when rotating the iPad... how can I fix it ??
Thanks for reading.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
从所有视图控制器中删除
shouldAutorotateToInterfaceOrientation:
的默认实现。Remove the default implementation of
shouldAutorotateToInterfaceOrientation:
from all your view controllers.