如果有人可以提供一些见解,那就在徘徊。对于我的生活,我无法弄清楚如何使用 UIActivityTypeMessage 发送 UIImage ,尽管有人说这是可能的。
UIActivityTypeMessage
该对象将提供的内容发布到消息应用程序。使用此服务时,您可以提供 NSString 和 NSAttributedString 对象作为活动项的数据。您还可以指定内容使用 sms 方案的 NSURL 对象。在 iOS 6.0 及更高版本中可用。在 UIActivity.h 中声明。
所以据我了解,我只能发送 NSString/NSURL。我不认为你这是可能的。
我正在使用这个:
UIImage *image; // some image here.
UIActivityViewController *activityViewController = [[UIActivityViewController alloc] initWithActivityItems:@[ image ] applicationActivities:nil];
任何帮助将非常感激。