这是 iOS 8 错误(旋转方向问题)吗?

Is this an iOS 8 Bug (orientation issue on rotation)?(这是 iOS 8 错误(旋转方向问题)吗?)
本文介绍了这是 iOS 8 错误(旋转方向问题)吗?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

从 iOS 8 开始,我的应用程序运行良好,但在测试此应用程序时发现了一个问题.它只会发生在 iPad 上,并且只有在我以横向模式启动应用程序时才会发生.如果它以纵向启动,一切正常(没有旋转问题).如果我旋转设备(模拟器或真实设备),视图会旋转出屏幕,只显示真实视图的剪辑,其余部分为黑色.

since iOS 8 my App runs quite good, but I found a Problem while testing this app. It just happens on iPad and only if I launch the app in landscape mode. If it launches in Portrait everything is right(no rotation issues). If i rotate the Device (simulator or real device) the view rotates out of the screen and just shows a Cut of the real view and the rest is black.

还有其他人注意到这样的错误吗?我该如何解决?

Anyone else did notice such a bug? How can I fix it?

推荐答案

遇到了类似的问题.令人惊讶的是,修复方法是在 Appdelegate 上注释掉所有与 self.window 相关的代码.

Had similar problem. Surprisingly the fix was to comment out all the code related to self.window on Appdelegate.

注释了 self.window 的初始化及其赋值.通过选中是初始视图控制器"复选框,在属性检查器的情节提要中设置初始视图.

Commented initialising of self.window and its assignment. Set the initial view in storyboard in Attributes inspector by checking "Is Initial View Controller" checkbox.

新的更好的解决方案
评论 self.window 导致了其他问题.相反,下面的代码是最好的:

New Better Solution
Commenting self.window was causing other issues. Instead the below code is best:

- (void)applicationDidChangeStatusBarOrientation:(NSNotification *)notification 
    {
         [UIViewController attemptRotationToDeviceOrientation];
    }

这篇关于这是 iOS 8 错误(旋转方向问题)吗?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Why local notification is not firing for UNCalendarNotificationTrigger(为什么没有为UNCalendarNotificationTrigger触发本地通知)
iOS VoiceOver functionality changes with Bundle Identifier(IOS画外音功能随捆绑包标识符而变化)
tabbar middle tab out of tabbar corner(选项卡栏中间的选项卡角外)
Pushing UIViewController above UITabBar(将UIView控制器推送到UITabBar上方)
How can I sync two flatList scroll position in react native(如何在本机Reaction中同步两个平面列表滚动位置)
Get an event when UIBarButtonItem menu is displayed(显示UIBarButtonItem菜单时获取事件)