First, i create send email for ios 7 but when running for ios 8 cannot type destination email address and others, after that pop up email close .. is there special process to send email for ios 8 ?
// Open Email and add attachment
MFMailComposeViewController *mailController = [[MFMailComposeViewController alloc] init];
NSArray *recipients = @[@""];
mailController.mailComposeDelegate = self;
[mailController setToRecipients:recipients];
[mailController setSubject:@"File"];
NSData *attachment = [[NSData alloc] initWithContentsOfFile:xlsPath];
[mailController addAttachmentData:attachment mimeType:@"application/vnd.ms-excel" fileName:@"Export.xls"];
mailController.navigationBar.tintColor = [UIColor whiteColor];
[self.navigationController presentViewController:mailController animated:YES completion:nil];