Found empty data in sqlite when send via MFMailcomposeController
问题 I am sending SQLite(Coredata sqlite file) file via email but found empty data in all tables in the received mail. I am using below code: MFMailComposeViewController *mc = [[MFMailComposeViewController alloc] init]; mc.mailComposeDelegate = self; [mc setSubject:subject]; [mc setMessageBody:body isHTML:FALSE]; if (attachmentData) { [mc addAttachmentData:attachmentData mimeType:fileMimeType fileName:fileName]; } if (!recipients || recipients.count == 0) { recipients = @[]; } [mc setToRecipients