网页直播源码中实现直接跳转到QQ聊天页面

代码很简单,在项目中加上

UIWebView *webView = [[UIWebView alloc] initWithFrame:CGRectZero];
NSURL *url = [NSURL URLWithString:@"mqq://im/chat?chat_type=wpa&uin=123456&version=1&src_type=web"];//uin=123456为你要跳转的QQ号码
NSURLRequest *request = [NSURLRequest requestWithURL:url];
//    webView.delegate = self;
[webView loadRequest:request];
[self.view addSubview:webView];

这一段代码就可以实现在APP中客户自己通过弹出QQ联系客服的操作

你可能感兴趣的:(技术类)