iOS 打开指定的QQ聊天界面

来源:互联网 发布:钩针制图软件 编辑:程序博客网 时间:2024/04/29 21:40

//str就是你要打开的QQ号码,也就是你的客服号码。

        NSString  * str=@"123456789";

        

        if ([[UIApplicationsharedApplication] canOpenURL:[NSURLURLWithString:@"mqq://"]]) {

            UIWebView *webView = [[UIWebViewalloc] initWithFrame:CGRectZero];

            NSURL * url=[NSURLURLWithString:[NSStringstringWithFormat:@"mqq://im/chat?chat_type=wpa&uin=%@&version=1&src_type=web",str]];

            

            NSURLRequest *request = [NSURLRequestrequestWithURL:url];

            webView.delegate =self;

            [webView loadRequest:request];

            [self.viewaddSubview:webView];

        }

阅读全文
0 0
原创粉丝点击