我正在通过UIDocumentInteractionController与其他应用共享PDF.在添加此功能之前,我使用MFMailComposeViewController定制了“发送到电子邮件”按钮 – 但现在我的UIDocumentInteractionController中还有一个Mail按钮,我想使用它来避免重复按钮.
我的问题是,通过旧的邮件控制器,我曾经设置主题和内容文本,而如果我使用UIDocumentInteractionController – 我只收到一封带有PDF附件的空白电子邮件.有没有人知道我可以解决这个问题,并在使用UIDocumentInteractionController时获取我的自定义主题和内容?
我在文档中找不到任何明显的东西,显然我不能干涉Mail应用程序以使其与我的应用程序通信 – 但是想知道是否有其他人遇到过这个问题,并且怀疑是“后门”解决方案.
下面是我目前正在创建和初始化我的UIDocumentInteractionController的代码:
-(void)opendocumentIn:(Nsstring*)filepath { //Nsstring * filePath = [[NSBundle mainBundle] pathForResource:filePath ofType:@"pdf"]; documentController = [UIDocumentInteractionController interactionControllerWithURL:[NSURL fileURLWithPath:filepath]]; documentController.delegate = self; documentController.UTI = @"com.adobe.pdf"; [documentController presentOptionsMenuFromBarButtonItem: [self.imageViewController exportQuote] animated:YES]; }
解决方法
您可以通过以下代码执行此操作
[self.documentInteractionController setName:@"My Email Subject"];