iOS跳转到淘宝天猫

跳转到淘宝或天猫的商品详情页。

1)安装了淘宝:跳转到淘宝详情页。

2)没装淘宝,装了天猫:跳转到天猫详情页

3)淘宝、天猫都没装:跳转到应用自己的页面,加载网页。


1)阿里百川的SDK。  文档地址:http://baichuan.taobao.com/doc2/detail.htm?spm=a3c0d.7629140.0.0.fXnfzs&treeId=51&articleId=102860&docType=1

2)拿到淘宝、天猫url scheme及相应的链接,自己完成跳转。代码如下:

NSURL *taobaoUrl = [NSURL URLWithString:[NSStringstringWithFormat:@"taobao://item.taobao.com/item.htm?id=%@", book_id]];

    NSURL *tmallUrl = [NSURL URLWithString:[[NSString stringWithFormat:@"tmall://tmallclient/?{\"action\":\"item:id=%@\"}", book_id]stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding]];

    

    if ([[UIApplication sharedApplicationcanOpenURL:taobaoUrl]) {

        //能打开淘宝就打开淘宝

        [[UIApplication sharedApplicationopenURL:taobaoUrl];

    } else if ([[UIApplication sharedApplicationcanOpenURL:tmallUrl]) {

        //能打开天猫就打开天猫

        [[UIApplication sharedApplicationopenURL:tmallUrl];

    } else {

        //都打不开就自己加载网页

        myWebVC *webVC = [[myWebVC allocinit];

        webVC.url = splash_url;

        [self.navigationController pushViewController:webVC animated:YES];

    }

你可能感兴趣的:(iOS)