1. 电商,最害怕的事情就是与用户失联了。 所以即时通讯是非常重要的。
2. 微信, 现在微信已经把外部打开微信的方式全部禁用了,所以 打开是不可能的,微信只能通过加好友,才能与你的客服进行聊天
3. QQ, 从外部打开指定QQ的聊天界面,是可以的,通过网页的方式。详细代码如下
//在这里放QQ号
NSString *qqNumber = @"2158015525";
NSString *openQQUrl = [NSString stringWithFormat:@"mqq://im/chat?chat_type=wpa&uin=%@&version=1&src_type=web",qqNumber];
NSURL *url = [NSURL URLWithString:openQQUrl];
[[UIApplication sharedApplication] openURL:url];
NSString *qqNumber = @"2158015525";
NSString *openQQUrl = [NSString stringWithFormat:@"mqq://im/chat?chat_type=wpa&uin=%@&version=1&src_type=web",qqNumber];
NSURL *url = [NSURL URLWithString:openQQUrl];
[[UIApplication sharedApplication] openURL:url];