项目中跳转到QQ 里面的时候打开对应的 聊天记录

NSString *qqNumber = @"343933286";
 
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];
原文地址:https://www.cnblogs.com/Jackie-subDai/p/9290076.html