跳转到QQ聊天
Posted 谢小锋
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了跳转到QQ聊天相关的知识,希望对你有一定的参考价值。
UIWebView *webView = [[UIWebView alloc] initWithFrame:CGRectZero];
NSURL *url = [NSURL URLWithString:@"mqq://im/chat?chat_type=wpa&uin=815040727&version=1&src_type=web"];//uin=123456为你要跳转的QQ号码
NSURLRequest *request = [NSURLRequest requestWithURL:url];
// webView.delegate = self;
[webView loadRequest:request];
[self.view addSubview:webView];
以上是关于跳转到QQ聊天的主要内容,如果未能解决你的问题,请参考以下文章