Search code examples
ipadmfmailcomposeviewcontroller

MFMailComposeViewController Orientation in ipad


i am implemented MFMailComposeViewController in ipad application. It works great in Portrait mode. When i rotate it to Landscape mode its not completely fill the page. Is it possible to show the mail composer without any space.


Solution

  • Yes i find the answer as just by include the line

    picker.modalPresentationStyle = UIModalPresentationFullScreen;

    in -(void)displayComposerSheet method.