美文网首页
从自己的app跳转到QQ指定的聊天界面

从自己的app跳转到QQ指定的聊天界面

作者: 心底碎片 | 来源:发表于2016-08-22 17:28 被阅读90次
    UIWebView *webView = [[UIWebView alloc] initWithFrame:CGRectZero];
        NSURL *url = [NSURL URLWithString:@"mqq://im/chat?chat_type=wpa&uin=2259403697&version=1&src_type=web"];
        NSURLRequest *request = [NSURLRequest requestWithURL:url];
        webView.delegate = self;
        [webView loadRequest:request];
        [self.view addSubview:webView];
    

    相关文章

      网友评论

          本文标题:从自己的app跳转到QQ指定的聊天界面

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