Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
MFMailComposeViewController モーダル ビューが読み込まれると、ステータス バーが表示されなくなりました。他のView Controllerに戻ると、もう表示されません。そのため、MFMailComposeViewController が読み込まれた後、アプリにはステータス バーが表示されなくなります。
それを修正する方法はありますか?
MFMailComposeViewController を起動するコードをチェックして、ステータス バーが隠れていないことを確認します。
[[UIApplication sharedApplication] setStatusBarHidden:NO animation:NO]; [[UIApplication sharedApplication] setStatusBarHidden:NO animation:NO];
トム。