实际上只是想实现这样的功能,如果应用程序的新版本在AppStore上可用,那么最终用户将被通知更新应用程序。
在Google上有很多答案,但看看下面的代码。
func isUpdateAvailable(completion: @escaping (Bool?, Error?) -> Void) throws -> URLSessionDataTask {
guard let info = Bundle.main.infoDictionary,
let currentVersion = info["CFBundleShortVersionString"] as? String,
let identifier = info["CFBundleIdentifier"] as? String,
let url = URL(string: "http://itunes.apple.com/in/lookup?bundleId=\(identifier)") else {
throw VersionError.invalidBundleInfo
}
print(currentVersion)
let task = URLSession.shared.dataTask(with: url) { (data, response, error) in
do {
if let error = error { throw error }
guard let data = data else { throw VersionError.invalidResponse }
let json = try JSONSerialization.jsonObject(with: data, options: [.allowFragments]) as? [String: Any]
if let a = ((json?["results"] as? [Any])?.first) as? [String: Any] {
print(a["version"] as? String ?? "")
}
guard let result = (json?["results"] as? [Any])?.first as? [String: Any], let version = result["version"] as? String else {
throw VersionError.invalidResponse
}
completion(version != currentVersion, nil)
} catch {
completion(nil, error)
}
}
task.resume()
return task
}
然后调用这个函数
_ = try? appDelegate.isUpdateAvailable { (update, error) in
if let error = error {
print(error)
} else if let update = update {
if update {
let alert = UIAlertController(title: "New Version Available", message: "New version of application is available please update now!", preferredStyle: UIAlertControllerStyle.alert)
alert.addAction(UIAlertAction(title: "Update", style: .default, handler: { (actionOk) in
if let url = URL(string: "itms-apps://itunes.apple.com/app/idXXXXXXXXX"),
UIApplication.shared.canOpenURL(url){
UIApplication.shared.open(url, options: [:])
}
}))
self.present(alert, animated: true, completion: nil)
}
}
}
问题是,如果新版本的应用程序准备出售,我打开旧版本的应用程序,然后弹出窗口将打开,当我点击更新按钮,它会在AppStore上重定向.但在AppStore,而不是显示“更新”按钮,它显示“打开”按钮
所以我签入了我的代码。
当我在浏览器上手动运行下面的URL时
http://itunes.apple.com/in/lookup?bundleId=com.mycompany.appname
然后下载**.txt**文件并获得准确的应用程序版本,但在我的代码print(a["version"] as? String ?? "")
中,它返回错误的版本号。
我哪里说错了?请纠正我。
注意:我也使用了http://itunes.apple.com/lookup?bundleId=com.mycompany.appname意味着从URL中删除了国家代码,但对我不起作用。
4条答案
按热度按时间bn31dyow1#
这是所有iOS开发人员检测应用程序版本并通知用户新更新的头痛问题。顺便说一句**@ CÜur和@Alexis O解释得很好,所以我不认为要解释更多。只要按照我的代码。
通过调用下面的URL,您将得到.txt文件
http://itunes.apple.com/in/lookup?bundleId=com.mycompany.appname
在该文件中,您还将找到currentVersionReleaseDate**,使用该数据和时间并与当前日期和时间进行比较,如果大于24小时,则您应显示popup以更新应用程序。
更改了您的代码:
在 *If语句 * 中更改。请检查。
bn31dyow2#
您的代码看起来是正确的。正如Coeur所说,Apple会逐步推出新的更新,而不是立即更新。更新通常在24小时后完成。
就我个人而言,我不会采用这种方法。最好是从服务器获取版本,然后在应用发布24小时后更新该值。您将对它有更多的控制权。假设您的新应用程序有错误。您可以选择不提示用户更新到该版本。
侧头:
crcmnpdw3#
你可以试试这个:
这是在Appstore上发送的检查://这是您的应用程序的appstore URL,您可以直接将您的appstore URL放在这里
whlutmcx4#
如果有人仍然遇到这个问题,请确保您正在执行以下3个步骤:
urlRequest.cachePolicy = .reloadIgnoringLocalCacheData
注意:对于第三个检查,如果你从web navigator调用常规链接(不带/us),它会给你有效的版本。以编程方式调用它不会。这就是为什么你需要添加/us路径。