Swift【App版本更新】

Swift有對應的版本更新庫(Siren),有需要的可以參考和使用。

iOS開發中,有時會有這種需求,在AppStore上出現新版本時,應用內彈窗提示用戶更新.自動提示更新的實現方案分爲兩種:

第一種,自己服務器提供一個接口,通過請求,獲取app的相關的版本信息,如:是否需要更新,以及更新的地址等信息
第二種,就是利用蘋果的appstore 提供的相關api進行查詢更新.http://itunes.apple.com/cn/lookup?id=你的APPId

採用方案1,實現邏輯:

1: 向自己服務器請求當前版本信息
2: 和App當前版本進行比較,如果返回的版本比當前本地版本新,彈窗並顯示更新日誌,根據點擊的按鈕,控制用戶跳轉到AppStore更新

簡單實現
效果圖:



具體代碼實現

[javascript]  view plain  copy
  1. struct VersionInfo {  
  2.     var url: String        //下載應用URL  
  3.     var title: String       //title  
  4.     var message: String       //提示內容  
  5.     var must_update: Bool  //是否強制更新  
  6.     var version: String     //版本  
  7. }  
  8.       
  9. class VersionManager: NSObject {  
  10.       
  11.     //本地版本  
  12.    private static func localVersion() -> String? {  
  13.         return Bundle.main.infoDictionary?["CFBundleShortVersionString"] as? String  
  14.     }  
  15.       
  16.     static func versionUpdate() {  
  17.         //1 請求服務端數據,並進行解析,得到需要的數據  
  18.         //2 版本更新  
  19.         handleUpdate(VersionInfo(url: "應用下載地址", title: "有新版本啦!", message: "提示更新內容,解決了xxx等一系列問題,新增了xxx等功能!", must_update: false, version: "3.5"))  
  20.     }  
  21.       
  22.     /// 版本更新  
  23.    private static func handleUpdate(_ info: VersionInfo) {  
  24.         guard let localVersion = localVersion()else { return }  
  25.         if isIgnoreCurrentVersionUpdate(info.version) { return }  
  26.         if versionCompare(localVersion: localVersion, serverVersion: info.version) {  
  27.             let alert = UIAlertController(title: info.title, message: info.message, preferredStyle: .alert)  
  28.             let update = UIAlertAction(title: "立即更新", style: .default, handler: { action in  
  29.                 UIApplication.shared.open(URL(string: info.url)!)  
  30.             })  
  31.             alert.addAction(update)  
  32.             if !info.must_update { //是否強制更新  
  33.                 let cancel = UIAlertAction(title: "忽略此版本", style: .cancel, handler: { action in  
  34.                     UserDefaults.standard.set(info.version, forKey: "IgnoreCurrentVersionUpdate")  
  35.                 })  
  36.                 alert.addAction(cancel)  
  37.             }  
  38.             if let vc = UIApplication.shared.keyWindow?.rootViewController {  
  39.                 vc.present(alert, animated: true, completion: nil)  
  40.             }  
  41.         }  
  42.     }  
  43.       
  44.    // 版本比較  
  45.    private static func versionCompare(localVersion: String, serverVersion: String) -> Bool {  
  46.         let result = localVersion.compare(serverVersion, options: .numeric, range: nil, locale: nil)  
  47.         if result == .orderedDescending || result == .orderedSame{  
  48.             return false  
  49.         }  
  50.             return true  
  51.     }  
  52.       
  53.     // 是否忽略當前版本更新  
  54.     private static func isIgnoreCurrentVersionUpdate(_ version: String) -> Bool {  
  55.         return UserDefaults.standard.string(forKey: "IgnoreCurrentVersionUpdate") == version  
  56.     }  
  57. }  

簡單說明:
1 代碼的實現很簡單,上面只是簡單寫了一個測試數據,真正的數據需要自己在每次程序啓動之後向服務端請求數據。
2 提供了獲取本地版本、版本更新、版本比較、是否忽略當前版本更新等4個方法。isIgnoreCurrentVersionUpdate方法是表示當用戶選擇忽略版本之後下次啓動程序,對於當前版本不再進行更新提示


Swift有對應的版本更新庫(Siren),有需要的可以參考和使用。