从APP内跳转淘宝详情页面

如题从APP内跳转到淘宝详情,或者其他APP页面

  • info.plist文件内LSApplicationQueriesSchemes添加taobao
Paste_Image.png
  • 拿到淘宝的URL Scheme 代码如下
     NSURL *url = [NSURL URLWithString:
                  [NSString stringWithFormat:@"taobao://item.taobao.com/item.htm?id=%@",
                                             @"spm=a1z10.1-c.w4004-13837643519.2.YM3SL4&id=529763810758"]];
    //注 后面的是商品的ID

    //能打开手机淘宝APP
    if ([[UIApplication sharedApplication] canOpenURL:url]) {
        [[UIApplication sharedApplication] openURL:url];
    }else{
      //使用webview打开链接
    }

你可能感兴趣的:(从APP内跳转淘宝详情页面)