我想用UIDocumentInteractionController将图像分享到SMS,Mail和Save Image。只是社交应用程序到共享图像。
self.documentationInteractionController = [UIDocumentInteractionController interactionControllerWithURL:[NSURL fileURLWithPath:path]];
self.documentationInteractionController.delegate = self;
[self.documentationInteractionController presentOpenInMenuFromRect:CGRectZero inView:self.view animated:YES];
你能帮助我吗?
谢谢!