iOS 应用程序的方向还记得吗?

发布于 2024-12-07 12:22:21 字数 183 浏览 0 评论 0原文

我有几个视图控制器,它们仅维护横向模式和一个具有所有界面方向(例如幻灯片)的视图控制器。 “启动画面”只能在横向模式下使用。在“幻灯片放映”处于纵向模式并且我完全终止应用程序(也从任务栏)后,应用程序意外地以纵向启动“闪屏”(横向模式下应该是什么)。但是,如果设备旋转时启动屏幕实际上不会纵向旋转,为什么会发生这种情况呢?以及如何解决这个问题呢?谢谢。

I have several view controllers, which maintains only landscape mode and one view controller with all interface orientations(for example, slideshow). "Splash screen" can only in landscape mode. After "slideshow" is in portrait mode and I fully terminate application(from task bar too), application starts a "splash screen"(what should in landscape mode) unexpectly in portrait. But why it happens, if splash screen is actually not rotates in portrait if device rotated? And how to resolve this problem? Thanks.

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

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

发布评论

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

评论(1

漫雪独思 2024-12-14 12:22:21

在你的 SplashScreenViewController 中写:-

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {

    return (interfaceOrientation == UIInterfaceOrientationLandscapeRight || interfaceOrientation == UIInterfaceOrientationLandscapeLeft);

}

In your SplashScreenViewController write:-

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {

    return (interfaceOrientation == UIInterfaceOrientationLandscapeRight || interfaceOrientation == UIInterfaceOrientationLandscapeLeft);

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