iOS App唤起淘宝打开优惠券领取页面

经猜想和实践,直接上代码。

NSString *url = @"taobao://taoquan.taobao.com/coupon/unify_apply.htm?sellerId=15858968&activityId=b4eba829c2984f93a868bf61b4fe2485";
NSURL *Url = [NSURL URLWithString:url];
if ([[UIApplication sharedApplication] canOpenURL:Url]) {
    [[UIApplication sharedApplication] openURL:Url];
} else {
    [Common showToast:@"无法打开淘宝"];
}

效果如下:测试效果

你可能感兴趣的:(iOS App唤起淘宝打开优惠券领取页面)