i have a feedback button in my ios 7 application with MFMailComposeViewController. After the user click this button the mailcomposer open but the statusbar changed to black.
None of above answers are work for me.
I have two issues.
Solution
Black status - I remove all navigation bar customization
// comment below line in AppDelegate
[[UINavigationBar appearance] setBackgroundImage:[UIImage imageNamed:@"nav_bg"] forBarMetrics:UIBarMetricsDefault];
Transparent title bar - set navigationBarHidden = Yes for MFMailComposeViewController
composeViewController.navigationBarHidden = YES;