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 wi开发者_JS百科thout any space.
Yes i find the answer as just by include the line
picker.modalPresentationStyle = UIModalPresentationFullScreen;
in -(void)displayComposerSheet method.
精彩评论