25

MFMailComposerViewController当用户进入并按下主页按钮时,我收到以下错误:

[UIWindow endDisablingInterfaceAutorotationAnimated:] 在没有匹配 -beginDisablingInterfaceAutorotation 的情况下调用 >。无视。

我查看了论坛,其他一些人在不同的情况下遇到了这个错误,但没有解决方案。

shouldAutorotate在应用程序的所有视图控制器中都设置了这个:

- (BOOL)shouldAutorotateToInterfaceOrientation:
                                  (UIInterfaceOrientation)interfaceOrientation
{
    return interfaceOrientation == UIInterfaceOrientationPortraitUpsideDown ||
           interfaceOrientation == UIInterfaceOrientationPortrait;
}
4

1 回答 1

3

检查您是否有多余的调用来关闭键盘、UIActionSheet 等。

我有同样的问题,并通过改变我关闭键盘的方式来解决。我发现下面的这篇文章是最有帮助的

未知错误 [UIWindow endDisablingInterfaceAutorotation]

于 2015-09-27T06:52:22.757 回答