#pragma mark -事件通知
#pragma mark客服
//在線客服
NSString*qqNumber=@"11111111";
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",qqNumber]];
NSURLRequest*request = [NSURLRequestrequestWithURL:url];
[webViewloadRequest:request];
[self.viewaddSubview:webView];
}else{
UIAlertController*alertController = [UIAlertControlleralertControllerWithTitle:@"提示"message:@"對(duì)不起,您還沒(méi)安裝QQ"preferredStyle:UIAlertControllerStyleAlert];
UIAlertAction*cancelAction = [UIAlertActionactionWithTitle:@"取消"style:UIAlertActionStyleCancelhandler:^(UIAlertAction*action) {
return;
}];
[alertControlleraddAction:cancelAction];
[selfpresentViewController:alertControlleranimated:YEScompletion:nil];
}
}