如果要在app里加入提醒用户升级的功能,只需要几个步骤:
- 获取用户本地app的版本号
- 获取App Store上本app的版本号
- 做对比,如果版本号不同则提示用户升级
首先定义三个方法:
//弹出Alert窗口,传入一个url参数,可以是app在store的地址,引导用户更新.
func sendAlert(url:String) {
let alertController = UIAlertController(title: "系统提示",
message: "应用有最新版本了,请前往升级.", preferredStyle: .alert)
let cancelAction = UIAlertAction(title: "取消", style: .cancel, handler: nil)
let okAction = UIAlertAction(title: "好的", style: .default, handler: {
action in
UIApplication.shared.openURL(NSURL(string: url) as! URL) //跳转到app store对应地址
})
alertController.addAction(cancelAction)
alertController.addAction(okAction)
self.present(alertController, animated: true, completion: nil)
}
//获取本地的版本号
func getNowAppVersion() -> String {
var listData: NSDictionary = NSDictionary()
let filePath = Bundle.main.path(forResource: "Info.plist", ofType:nil )
listData = NSDictionary(contentsOfFile: filePath!)!
return listData["CFBundleVersion"]! as! String
}
//获取APP Store上的版本号,参数id是app store上的id
func getStoreAppVersion (id:String) -> String {
let appurl = "https://itunes.apple.com/lookup?id=" + id
do{
let jsonData = NSData(contentsOf: NSURL(string: appurl) as! URL)
let json = try JSONSerialization.jsonObject(with: jsonData as! Data, options: JSONSerialization.ReadingOptions.mutableLeaves) as! NSDictionary
let res = json["results"] as! NSArray
let xx = res[0] as! NSDictionary
return xx["version"]! as! String
} catch {
NSLog("JSON解析失败")
}
return "getAppVersion error"
}
在启动ViewController里做对比版本操作即可达到标题的目的:
override func viewDidAppear(_ animated: Bool){
super.viewDidAppear(animated)
let url = "app的地址,用户在弹出框确认更新时可以直接跳转过去"
let id = "xxxxxxx"
if getNowAppVersion() == getStoreAppVersion(id: id) {
NSLog("版本号相同")
} else {
NSLog("版本号不同")
sendAlert(url: url)
}
}
这里有个小坑:
如果开发时填写的版本号是整数,例如1. 则从app store上获取的版本号会是1.0 , 而在用户本地获取的是1, 对比就失败了. 所以最好是在开发时,版本号填写精确到小数点后1位.
更新:
这样提交审核会被拒...别问我是怎么知道的.....(>﹏<)