I am using xcode 7.3 and using following code to open MfMailComposeViewController and object of mail composer goes nil after alloc init it.
- (void)openMailComposer {
NSString *emailTitle = @"Invite for SpotFit";
MFMailComposeViewController *mailVC = [[MFMailComposeViewController alloc] init];
mailVC.mailComposeDelegate = self;
[mailVC setSubject:emailTitle];
[mailVC setMessageBody:AppLink isHTML:NO];
[self presentViewController:mailVC animated:NO completion:nil];
}