ユーザーがホームボタンMFMailComposerViewController
を押すと、次のエラーが表示されます。
[UIWindow endDisablingInterfaceAutorotationAnimated:] -beginDisablingInterfaceAutorotation を一致させずに > で呼び出されました。無視。
私はフォーラムを見回しましたが、他の何人かの人々がさまざまな状況でこのエラーを経験しましたが、解決策はありません.
shouldAutorotate
アプリのすべてのView Controllerでこれに設定しました:
- (BOOL)shouldAutorotateToInterfaceOrientation:
(UIInterfaceOrientation)interfaceOrientation
{
return interfaceOrientation == UIInterfaceOrientationPortraitUpsideDown ||
interfaceOrientation == UIInterfaceOrientationPortrait;
}