在瀏覽器中可以通過JS代碼打開QQ并彈出聊天界面,一般作為客服QQ使用惩激。而在移動端騰訊沒有公布提供類似API茵休,但是卻可以使用schema模式來啟動手機(jī)QQ
//qqNumber就是你要打開的QQ號碼, 也就是你的客服號碼金砍。
NSString? *qqNumber=@"1394381531";
if ([[UIApplication sharedApplication] canOpenURL:[NSURL URLWithString:@"mqq://"]]) {
UIWebView *webView = [[UIWebView alloc] initWithFrame:CGRectZero];
NSURL * url=[NSURL URLWithString:[NSString stringWithFormat:@"mqq://im/chat?chat_type=wpa&uin=%@&version=1&src_type=web",qqNumber]];
NSURLRequest *request = [NSURLRequest requestWithURL:url];
[webView loadRequest:request];
[self.view addSubview:webView];
}else{
UIAlertController *alertController = [UIAlertController alertControllerWithTitle:@"nil" message:@"對不起址否,您還沒安裝QQ" preferredStyle:UIAlertControllerStyleAlert];
UIAlertAction *cancelAction = [UIAlertAction actionWithTitle:@"取消" style:UIAlertActionStyleCancel handler:^(UIAlertAction *action) {
return ;
}];
[alertController addAction:cancelAction];
[self presentViewController:alertController animated:YES completion:nil];
}
注意:如果你的QQ不是客服QQ會出現(xiàn)紅色的感嘆號
想要解決也很簡單打開QQ推廣設(shè)置一下就可以了
1.打開http://shang.qq.com/v3/index.html點(diǎn)擊推廣工具------> 點(diǎn)擊立即免費(fèi)開通
轉(zhuǎn)載:? http://www.reibang.com/p/d306a443bcc8