实际上只是想实现一些功能,例如,如果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 文件并获得准确的App版本,但是在我的代码print(a["version"] as? String ?? "")
中,它返回了错误的版本号。
我要去哪里了?请纠正我。
注意:我还使用http://itunes.apple.com/lookup?bundleId=com.mycompany.appname表示从URL中删除了国家代码,但对我不起作用。
答案 0 :(得分:1)
您的代码看起来正确。正如Coeur所说,Apple会逐步推出新更新,并且不会立即发布。通常在24小时后完成更新。
就个人而言,我不会采用这种方法。最好从服务器中获取版本,并且您可以在发布该应用程序24小时后更新该值。您将对其有更多控制。假设您的新应用存在错误。您可以选择不提示用户更新到该版本。
侧面提示:
答案 1 :(得分:1)
这是所有iOS开发人员检测应用程序版本并通知用户进行新更新的头疼问题。 BTW @Cœur和 @Alexis O 解释得很好,所以我想不做更多解释。只需遵循我的代码即可。
通过在URL下调用,您将获得.txt文件
http://itunes.apple.com/in/lookup?bundleId=com.mycompany.appname
在文件中,您还会找到 currentVersionReleaseDate ,使用此数据和时间并将其与当前日期和时间进行比较(如果较晚则为24小时)?那么您应该显示弹出来更新应用。
更改了代码:
if let a = ((json?["results"] as? [Any])?.first) as? [String: Any] {
print(a["version"] as? String ?? "")
let currentVersionDate = a["currentVersionReleaseDate"] as? String ?? ""
let dateFormatter = DateFormatter()
dateFormatter.dateFormat = "yyyy-MM-dd'T'HH:mm:ssZ"
dateFormatter.locale = Locale(identifier: "en_US_POSIX")
if let myDate = dateFormatter.date(from: currentVersionDate) {
let diff = Calendar.current.dateComponents([.hour], from: myDate, to: Date()).hour ?? 0
if diff < 24 {
completion(false, nil)
return
}
}
}
在 If语句中进行了更改。检查一下。
答案 2 :(得分:0)
您可以尝试以下方法:
func isAppUpdateAvailable() throws -> Bool {
let yourAppleID = "12454364536" //This is demo id, you can get your apple id for a specific app from the appinformation tab of itunesconnect account
guard let info = Bundle.main.infoDictionary,
let currentVersion = info["CFBundleShortVersionString"] as? String,
let url = URL(string: "http://itunes.apple.com/lookup?id=\(yourAppleID)) else {
throw VersionError.invalidBundleInfo
}
let data = try Data(contentsOf: url)
guard let json = try JSONSerialization.jsonObject(with: data, options: [.allowFragments]) as? [String: Any] else {
throw VersionError.invalidResponse
}
if let result = (json["results"] as? [Any])?.first as? [String: Any], let version = result["version"] as? String {
print("version in app store", version,currentVersion);
return version != currentVersion
}
throw VersionError.invalidResponse
}
这是在应用商店上发送邮件的支票: //这是您各自应用的应用商店网址,您可以直接在此处放置应用商店网址
let appStoreURl = "https://itunes.apple.com/sg/app/AppName/idXXXXXXXXXX?ls=1&mt=8"
if let url = URL(string: appStoreURl),
UIApplication.shared.canOpenURL(url){
UIApplication.shared.open(url, options: [:])
}