zoukankan      html  css  js  c++  java
  • whatsapp

    //文字分享

     NSString *msg = @"您好";

        NSString *url = [NSString stringWithFormat:@"whatsapp://send?text=%@", [msg stringByAddingPercentEncodingWithAllowedCharacters:[NSCharacterSet URLHostAllowedCharacterSet]]];

        NSURL *whatsappURL = [NSURL URLWithString: url];

        

        if ([[UIApplication sharedApplication] canOpenURL: [NSURL URLWithString:@"whatsapp://app"]]){

         

                // [[UIApplication sharedApplication] openURL: whatsappURL];

            

            [[UIApplication sharedApplication] openURL:whatsappURL options:@{} completionHandler:nil];

                

                NSLog(@"fff");

    // 图片分享

    //             UIImage     * iconImage = [UIImage imageNamed:@"icon.png"];

    //        

    //            

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

    //            

    //            

    //            _documentInteractionController = [[UIDocumentInteractionController alloc]init];

    //            _documentInteractionController.UTI = @"net.whatsapp.image";

    //            

    //            

    //             _documentInteractionController.delegate = self;

    //            

    //            

    //            [_documentInteractionController presentOpenInMenuFromRect:self.view.bounds 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];

        } 

    需要注意的plist文件中也需要加入白名单

    LSApplicationQueriesSchemes Array类型

      whatsapp 

    一天一章
  • 相关阅读:
    压测基础
    性能压测终极武器之arthas
    python 返回当前文件夹下的所有文件的绝对路径;打印文件中的中文字符
    python 虚拟环境及项目快速迁移
    python3 解决bytes转str时抛“UnicodeDecodeError”异常
    mac系统环境变量
    kafka生产消费消息
    mac pycharm打不开问题
    jmeter获取毫秒时间戳
    两种方式 获取数据库某个表中所有的数据数量条数
  • 原文地址:https://www.cnblogs.com/hangman/p/6911767.html
Copyright © 2011-2022 走看看