【发布时间】:2015-06-18 05:39:06
【问题描述】:
我正在尝试分享图片和文字。
但是当我尝试使用 whatsapp 分享时,我看不到图像并且它没有被发送(当我尝试分享到 Facebook 或邮件时,我确实看到了它......)。
怎么了?
- (void)shareImage:(UIImage *)image
{
NSString *sharedMsg=[NSString stringWithFormat:@"Hello world"];
UIImage* sharedImg=image;
NSArray* sharedObjects=[NSArray arrayWithObjects:sharedMsg, sharedImg, nil];
UIActivityViewController *activityViewController = [[UIActivityViewController alloc]
initWithActivityItems:sharedObjects applicationActivities:nil];
activityViewController.popoverPresentationController.sourceView = self.view;
[self presentViewController:activityViewController animated:YES completion:nil];
}
【问题讨论】: