iOS share image AND text to WhatsApp

后端 未结 5 815
猫巷女王i
猫巷女王i 2020-12-23 14:11

I have googled, and get some solutions, it seems the only possible way is thru UIDocumentInteractionController. I have found the result that able to share

5条回答
  •  猫巷女王i
    2020-12-23 14:55

    You can use UIActivityViewController to share image , text or URL .Here is a small example :

    NSString *textToShare = @"Enter your text to be shared";
    UIImage * image = [UIImage imageNamed:@"imagename"];
    
    NSArray *objectsToShare = @[textToShare, image];
    
    UIActivityViewController *activityVC = [[UIActivityViewController alloc] initWithActivityItems:objectsToShare applicationActivities:nil];
    
    
    [self presentViewController:activityVC animated:YES completion:nil];
    

    Run the above code and select whats app to share if you want you can share by other mediums also . This is apple' s default share method

提交回复
热议问题