欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  移动技术

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

程序员文章站 2022-03-23 09:38:47
跳转到淘宝或天猫的商品详情页。 1)安装了淘宝:跳转到淘宝详情页。 2)没装淘宝,装了天猫:跳转到天猫详情页 3)淘宝、天猫都没装:跳转到应用自己的页面,加载网页。 1)阿...
跳转到淘宝或天猫的商品详情页。

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

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

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

1)阿里百川的SDK。 

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

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

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

if([[UIApplicationsharedApplication]canOpenURL:taobaoUrl]) {

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

[[UIApplicationsharedApplication]openURL:taobaoUrl];

}elseif([[UIApplicationsharedApplication]canOpenURL:tmallUrl]) {

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

[[UIApplicationsharedApplication]openURL:tmallUrl];

}else{

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

myWebVC*webVC = [[myWebVCalloc]init];

webVC.url= splash_url;

[self.navigationControllerpushViewController:webVCanimated:YES];

}