博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
swift 获取Appstore版本号并与本地版本比较 更新跳转到Appstore
阅读量:4966 次
发布时间:2019-06-12

本文共 1510 字,大约阅读时间需要 5 分钟。

首先我用的是Alamofire请求的数据

1.获取appstore版本号

func checkVersionTapGestrue(sender: UITapGestureRecognizer){        Alamofire.request("https://itunes.apple.com/lookup?bundleId=你的bundleId", method: .get, parameters: [:])            .responseJSON { (response) in                                if let value = response.result.value {                    let json = JSON(value)                                self.compareVersion(appStoreVersion: json["results"][0]["version"].stringValue)                }        }    }

2.比较两个版本

//比较版本    func compareVersion(appStoreVersion: String) {            let version:String = (Bundle.main.infoDictionary?["CFBundleShortVersionString"] as? String)!        if appStoreVersion == version {            BaseController().showTextOnly(view: self.view, text: "当前已经是最新版本", detail: "")        }else{            let urlString = "itms-apps://itunes.apple.com/app/id23223232323"(id加你的appId)            if let url = URL(string: urlString) {                //根据iOS系统版本,分别处理                if #available(iOS 10, *) {                    UIApplication.shared.open(url, options: [:],                                              completionHandler: {                                                (success) in                    })                } else {                    UIApplication.shared.openURL(url)                }            }        }    }

参考:http://www.hangge.com/blog/cache/detail_1265.html

Alamofire

Alamofire

Alamofire

Alamofire

Alamofire

转载于:https://www.cnblogs.com/kunH/p/7340513.html

你可能感兴趣的文章
js 基础拓展
查看>>
C#生成随机数
查看>>
Android应用程序与SurfaceFlinger服务的连接过程分析
查看>>
Java回顾之多线程
查看>>
机电行业如何进行信息化建设
查看>>
9、总线
查看>>
Git 笔记 - section 1
查看>>
2018 Multi-University Training Contest 10 - Count
查看>>
HDU6203 ping ping ping
查看>>
《人人都是产品经理》书籍目录
查看>>
如何在git bash中运行mysql
查看>>
OO第三阶段总结
查看>>
构建之法阅读笔记02
查看>>
DataTable和 DataRow的 区别与联系
查看>>
检索COM 类工厂中CLSID 为 {00024500-0000-0000-C000-000000000046}的组件时失败
查看>>
mysql数据库中数据类型
查看>>
Fireworks基本使用
查看>>
两台电脑间的消息传输
查看>>
Linux 标准 I/O 库
查看>>
.net Tuple特性
查看>>