Ios 使用UIDocumentInteractionController将图像共享到SMS、邮件、保存图像

Ios 使用UIDocumentInteractionController将图像共享到SMS、邮件、保存图像,ios,xcode,email,sms,share,Ios,Xcode,Email,Sms,Share,我想通过UIDocumentInteractionController将图像共享到SMS、邮件和保存图像。只需将社交应用程序添加到共享图像 self.documentationInteractionController = [UIDocumentInteractionController interactionControllerWithURL:[NSURL fileURLWithPath:path]]; self.documentationInteractionController.deleg

我想通过UIDocumentInteractionController将图像共享到SMS、邮件和保存图像。只需将社交应用程序添加到共享图像

self.documentationInteractionController = [UIDocumentInteractionController interactionControllerWithURL:[NSURL fileURLWithPath:path]];
self.documentationInteractionController.delegate = self;
[self.documentationInteractionController presentOpenInMenuFromRect:CGRectZero inView:self.view animated:YES];
你能帮我吗


谢谢大家!

UIDocumentInteractionController
不用于共享到社交网络,因此您可以使用Ok,但我的图像无法在WhatsApp上共享:-/I创建自定义UIActivity以与WhatsApp共享图像。非常感谢。