美文网首页
从APP内跳转淘宝详情页面

从APP内跳转淘宝详情页面

作者: rghyou | 来源:发表于2017-02-08 11:48 被阅读783次

如题从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内跳转淘宝详情页面

      本文链接:https://www.haomeiwen.com/subject/unuvittx.html