iOS实现对比App版本提示用户升级

如果要在app里加入提醒用户升级的功能,只需要几个步骤:

  1. 获取用户本地app的版本号
  2. 获取App Store上本app的版本号
  3. 做对比,如果版本号不同则提示用户升级

首先定义三个方法:

//弹出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位.


更新:

这样提交审核会被拒...别问我是怎么知道的.....(>﹏<)

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值