大家好,我一直在研究 iPhone 4s
我已经使用 ifileexplorer 下载了文件 (.doc),我可以在我的 iPhone 上看到该文件。我需要将该文件发送给我的朋友,以便我撰写 gmail 点击附加文件,我只能看到照片,我不是获取文档文件。
我如何将文档上传到gmail,我需要安装更多东西吗?我已经搜索了很长时间,但我没有找到上传文件的最佳方法。我尝试安装各种应用程序,如文件,ifileexplorer 来保存但是无法从这里上传
请帮我解决这个问题
我认为这段代码对你有帮助......
NSData *attachment = [NSData dataWithContentsOfURL:fileURL options:(NSDataReadingMapped|NSDataReadingUncached) error:nil];
if (attachment != nil) // Ensure that we have valid document file attachment data
{
MFMailComposeViewController *mailComposer = [MFMailComposeViewController new];
[mailComposer addAttachmentData:attachment mimeType:@"application/pdf" fileName:fileName];
}