iOS对于webView跳转拼多多
2019-09-29 本文已影响0人
Aldon丶
刚遇到的问题
通过抓包,发现跳转拼多多APP,需要对含有商品信息的URL做字符串替换的特殊处理,写在这里方便大家查阅。
if ([absoluteStr containsString:@"https://mobile.yangkeduo.com/"]){
NSString *skipUrlStr = [absoluteStr stringByReplacingOccurrencesOfString:@"https://mobile.yangkeduo.com/" withString:@"pinduoduo://com.xunmeng.pinduoduo/"];
NSURL *skipUrl = [NSURL URLWithString:skipUrlStr];
[[UIApplication sharedApplication] openURL:skipUrl];
};
共勉。