the apps launched the mailcomposer modal view (MFMailComposeViewController) when the Contact Us button is pressed. but once the modal view is loaded, the status bar is hidden automatically.
I setStatusBarHidden Status to NO after modal view controller is dismissed.
[self dismissModalViewControllerAnimated:YES];
[[UIApplication sharedApplication] setStatusBarHidden:NO];
but the status bar and navigation bar is overlapped after ModalViewController is dismissed.
I got no clue how to fix it. Appreciate any kind help. Thanks.