If I run this code on an iPad (iOS 8) from a view controller:
MFMessageComposeViewController *controller = [[[MFMessageComposeViewController alloc]init]autorelease];
controller.modalPresentationStyle = UIModalPresentationFormSheet;
[self presentViewController:controller animated:YES completion:nil];
I get a fullscreen message composition view. But I see no documentation or reference anywhere of MFMessageComposeViewController
ignoring its modal presentation style. Is this expected? Or am I missing something?