无论屏幕睡眠时的方向如何,屏幕解锁后 iPad 应用程序都会以纵向显示
我的办公桌上有横屏模式的 iPad 应用程序。当 iPad 屏幕锁定时,我会解锁屏幕。当应用程序再次显示时,应用程序处于纵向模式,并且将一直保持这种状态,直到我拿起 iPad 并移动它以重置方向。
我是否应该进行某种检查以使其保持视图出现时的方向?
I have my iPad application in landscape mode sitting at my desk. When the iPad's screen locks, I unlock the screen. When the application is shown again, the application is in portrait mode and will remain so until I pick up my iPad and move it around to reset the orientation.
Is there some sort of check that I should make to leave it in the orientation that it is in when the view appears?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以尝试检查
[[UIApplication sharedApplication] statusBarOrientation]
,然后从那里设置正确的方向。You can try checking
[[UIApplication sharedApplication] statusBarOrientation]
and then setting the correct orientation from there.