MFMailComposerViewController
当用户进入并按下主页按钮时,我收到以下错误:
[UIWindow endDisablingInterfaceAutorotationAnimated:] 在没有匹配 -beginDisablingInterfaceAutorotation 的情况下调用 >。无视。
我查看了论坛,其他一些人在不同的情况下遇到了这个错误,但没有解决方案。
我shouldAutorotate
在应用程序的所有视图控制器中都设置了这个:
- (BOOL)shouldAutorotateToInterfaceOrientation:
(UIInterfaceOrientation)interfaceOrientation
{
return interfaceOrientation == UIInterfaceOrientationPortraitUpsideDown ||
interfaceOrientation == UIInterfaceOrientationPortrait;
}