美文网首页
跳转到微信,qq小技巧

跳转到微信,qq小技巧

作者: 默默的前行 | 来源:发表于2016-08-23 15:54 被阅读3150次

//跳到qq页面

UIWebView *webView = [[UIWebView alloc] initWithFrame:CGRectZero];
            NSURL *url = [NSURL URLWithString:@"mqq://im/chat?chat_type=wpa&uin=&version=1&src_type=web"];
            NSURLRequest *request = [NSURLRequest requestWithURL:url];
            webView.delegate = self;
            [webView loadRequest:request];
            [self.view addSubview:webView];

//跳到微信页面,和applestore

  [[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"http://weixin.qq.com/r/o3W_sRvEMSVOhwrSnyCH"]];

//直接跳转到微信界面

 NSString *str =@"weixin://qr/JnXv90fE6hqVrQOU9yA0";
            
            [[UIApplication sharedApplication] openURL:[NSURL URLWithString:str]];

相关文章

网友评论

      本文标题:跳转到微信,qq小技巧

      本文链接:https://www.haomeiwen.com/subject/nuhnsttx.html