天天看點

iOS-QQ臨時對話、QQ群申請跳轉

QQ 臨時對話

NSString *qq = [NSString stringWithFormat:@"mqq://im/chat?chat_type=wpa&uin=%@&&version=1&src_type=web",@"這是是QQ号碼"];
            NSURL *urlQQ = [NSURL URLWithString:qq];
            [[UIApplication sharedApplication] openURL:urlQQ];      

QQ 申請加入群

///QQ群
            NSString *urlStr = [NSString stringWithFormat:@"mqqapi://card/show_pslcard?src_type=internal&version=1&uin=%@&key=%@&card_type=group&source=external", @"這是是群号",@"這裡是由群号在騰訊生成的Key"];
            NSURL *url = [NSURL URLWithString:urlStr];
            [[UIApplication sharedApplication] openURL:url];      

備注:QQ群的Key生成位址:https://qun.qq.com/join.html

qq