iOS应用内实现跳转到手机淘宝天猫的方法

 更新时间:2017年12月27日 08:39:51   作者:ZhugeZhan  
这篇文章主要给大家介绍了关于iOS应用内如何实现跳转到手机淘宝天猫的相关资料,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有具有一定的参考学习价值,需要的朋友们下面来一起学习学习吧。

前言

平常我们做iOS开发,会经常遇到打开其他的APP的功能。本文主要介绍了关于iOS实现应用内跳转到手机淘宝天猫的相关内容,分享出来供大家参考学习,下面话不多说了,来一起看看详细的介绍吧。

info.plist 中需要添加(实测没填写的话不会去判断是否安装了此APP)


代码如下:

需要跳转的按钮点击事件:

 func copyStrKey(_ sender: UIButton) {
  let pboard = UIPasteboard.general
  pboard.string = self.productModel["search_key"].stringValue  
  var titleStr = ""
  var jumpStr = ""
  if sender.tag == 0 {
   titleStr = "关键词复制成功,是否跳转到手机淘宝APP?"
   jumpStr = ("taobao://s.taobao.com/search?q=" + self.productModel["search_key"].stringValue).addingPercentEncoding(withAllowedCharacters: .urlQueryAllowed)!
  } else if sender.tag == 1 {
   titleStr = "淘口令复制成功,是否跳转到手机淘宝APP?"
   jumpStr = "taobao://item.taobao.com/item.htm"
  }  
  let alertCtr = UIAlertController.init(title: titleStr, message: nil, preferredStyle: UIAlertControllerStyle.alert)
  alertCtr.addAction(UIAlertAction.init(title: "取消", style: UIAlertActionStyle.cancel, handler: nil))
  alertCtr.addAction(UIAlertAction.init(title: "确定", style: UIAlertActionStyle.default, handler: { (action) in   
   if let url = URL.init(string: jumpStr) {    
    if UIApplication.shared.canOpenURL(url) == true {
     UIApplication.shared.openURL(url)
    } else {     
     let alertC = UIAlertController.init(title: "您未安装手机淘宝APP,是否前往AppStore下载安装?", message: nil, preferredStyle: UIAlertControllerStyle.alert)     
     alertC.addAction(UIAlertAction.init(title: "取消", style: UIAlertActionStyle.cancel, handler: nil))
     alertC.addAction(UIAlertAction.init(title: "确定", style: UIAlertActionStyle.default, handler: { (action: UIAlertAction) in      
      let AppStoreVC = UIViewController.init()      AppStoreVC.modalTransitionStyle = UIModalTransitionStyle.coverVertical
      
      let webView = UIWebView.init(frame: AppStoreVC.view.bounds)
      let request = NSURLRequest.init(url: URL.init(string: "itms-apps://itunes.apple.com/cn/app/tao-bao-sui-shi-sui-xiang/id387682726?mt=8")!) //AppStore手机淘宝地址
      webView.loadRequest(request as URLRequest)
      AppStoreVC.view.addSubview(webView)      
      self.present(AppStoreVC, animated: true, completion: {
       AppStoreVC.dismiss(animated: true, completion: nil)
      })
     }))
     self.present(alertC, animated: true, completion: nil)     
    }
   }
  }))
  self.present(alertCtr, animated: true, completion: nil)
 }

说明:

URL 不能包含 ASCII 字符集中, 不是必须这样的字符进行转义的字符。

使用 stringByAddingPercentEncodingWithAllowedCharacters

字符集 URLQueryAllowedCharacterSet

跳转天猫:

1、首页

tmall://tmallclient/

2、详情(需要id)

tmall://page.tm/itemDetail?id=556107550107

3、搜索列表

tmall://page.tm/search?q=1234

总结

以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,如果有疑问大家可以留言交流,谢谢大家对脚本之家的支持。

相关文章

  • IOS 应用内显示 AppStore 某个应用的详情

    IOS 应用内显示 AppStore 某个应用的详情

    本文主要介绍ISO应用内打开AppStorn 显示某个应用详情,这里帮大家总结了两种方法,大家对比一下,在项目中选择应用,
    2016-07-07
  • iOS开发教程之扇形动画的实现

    iOS开发教程之扇形动画的实现

    实现扇形图大家应该都会的,但是扇形动画大家都会实现吗?下面这篇文章主要给大家介绍了关于iOS开发教程之扇形动画实现的相关资料,文中介绍的非常详细,需要的朋友们下面跟着小编一起来学习学习吧。
    2017-06-06
  • iOS-Mac远程连接控制Window

    iOS-Mac远程连接控制Window

    这篇文章主要为大家详细介绍了iOS-Mac远程连接控制Window,苹果电脑远程连接控制Windows电脑,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2017-11-11
  • iOS项目开发--实现类似淘宝详情页面

    iOS项目开发--实现类似淘宝详情页面

    本篇文章主要介绍了iOS实现类似淘宝详情页面,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧
    2016-11-11
  • cmake ios终端下执行提示错误 iOS version not found, tested: [5.0;5.1;6.0;6.1;7.0;8.3]的解决方案

    cmake ios终端下执行提示错误 iOS version not found, tested: [5.0;5.1;6

    这篇文章主要介绍了cmake ios终端下执行提示错误 iOS version not found, tested: [5.0;5.1;6.0;6.1;7.0;8.3]的解决方案的相关资料,需要的朋友可以参考下
    2016-10-10
  • iOS实现毫秒倒计时的方法详解

    iOS实现毫秒倒计时的方法详解

    倒计时在我们日常开发中必不可少,最近在公司的一个项目中就遇到了这个需求,本文着重介绍的是利用iOS实现毫秒倒计时的方法,文中给出了详细的示例代码,需要的朋友可以参考借鉴,下面来一起学习学习吧。
    2017-04-04
  • iOS推送之本地通知UILocalNotification

    iOS推送之本地通知UILocalNotification

    这篇文章主要为大家详细介绍了iOS本地通知UILocalNotification,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2016-09-09
  • IOS 中XAMPP配置问题及解决方法

    IOS 中XAMPP配置问题及解决方法

    这篇文章主要介绍了IOS 中XAMPP配置问题及解决方法的相关资料,需要的朋友可以参考下
    2017-06-06
  • iOS开发中AVPlayer的简单应用

    iOS开发中AVPlayer的简单应用

    这篇文章主要介绍了iOS开发中AVPlayer的简单应用,文中给出了简单的介绍和示例代码,相信对大家学习AVPlayer的应用具有一定的参考价值,需要的朋友们下面跟着小编来一起学习学习。
    2017-02-02
  • 详解iOS设计中的UIWindow使用

    详解iOS设计中的UIWindow使用

    这篇文章主要介绍了iOS设计中的UIWindow使用,包括UIWindowLevel和KeyWindow两个大的方面的讲解,需要的朋友可以参考下
    2015-09-09

最新评论