【发布时间】:2015-08-13 06:48:03
【问题描述】:
我的应用在上线后和从 Crashlytics 日志中崩溃,我可以看到如下崩溃详细信息
致命异常:UIApplicationInvalidInterfaceOrientation 支持的方向与应用程序没有共同方向,并且 [UIAlertController shouldAutorotate] 返回 YES
我有类似下面的代码
- (NSUInteger)supportedInterfaceOrientations
{
return UIInterfaceOrientationMaskLandscape;
}
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
return UIInterfaceOrientationIsLandscape(interfaceOrientation);
}
我发现这种崩溃只发生在 iOS 8.3 和 8.4 中。有任何想法吗?谢谢!
【问题讨论】:
标签: ios objective-c iphone