I\'m using MFMessageComposeViewController in order to show the SMS send interface.
My app uses full screen, the status bar is hidden by settings in plist file (Status b
Hide the status bar after you modal presented the message controller. Something like this:
controller.wantsFullScreenLayout = NO; [self presentModalViewController:controller animated:YES]; [[UIApplication sharedApplication] setStatusBarHidden:YES];