ios – UIActivityViewController图像共享不适用于Whatsapp

前端之家收集整理的这篇文章主要介绍了ios – UIActivityViewController图像共享不适用于Whatsapp前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
当我使用UIActivityViewController与Whatsapp应用程序共享图像数据时,我收到一条提示

This item cannot be shared. Please select a different item.

我可以将图像数据分享给除Whatsapp之外的所有其他应用程序,是否有人遇到过这样的问题?或者任何人都可以帮我解决这个问题.

如果有人想检查代码,那么如果需要,评论分享.

解决方法

如果您想使用WhatsApp共享图像,请使用以下代码
if ([[UIApplication sharedApplication] canOpenURL: [NSURL URLWithString:@"whatsapp://app"]]){

        UIImage     * iconImage = [UIImage imageNamed:@"my_account.png"];
        NSString    * savePath  = [NSHomeDirectory() stringByAppendingPathComponent:@"Documents/whatsAppTmp.wai"];

        [UIImageJPEGRepresentation(iconImage,1.0) writeToFile:savePath atomically:YES];

        _documentInteractionController = [UIDocumentInteractionController interactionControllerWithURL:[NSURL fileURLWithPath:savePath]];
        _documentInteractionController.UTI = @"net.whatsapp.image";
        _documentInteractionController.delegate = self;

        [_documentInteractionController presentOpenInMenuFromRect:CGRectMake(0,0) inView:self.view animated: YES];


    } else {
        UIAlertView * alert = [[UIAlertView alloc] initWithTitle:@"WhatsApp not installed." message:@"Your device has no WhatsApp installed." delegate:self cancelButtonTitle:@"OK" otherButtonTitles:nil];
        [alert show];
    }
原文链接:https://www.f2er.com/iOS/334476.html

猜你在找的iOS相关文章