status bar disappear when MFMailComposeViewController is loaded
When the MFMailComposeViewController modal view is loaded, the status bar disappeared. It doesn't appear again anymore if I navigate back to other view controllers. So after M开发者_开发技巧FMailComposeViewController is loaded, the apps end up with no status bar.
Is there any way to fix it?
Check the code that launches MFMailComposeViewController, to ensure its not hiding your status bar.
Also on the delrgate for the dismiss you could put: [[UIApplication sharedApplication] setStatusBarHidden:NO animated:NO];
Tom.
精彩评论