diff --git a/ylgamehall/Source/WebView/WebContainerViewController.swift b/ylgamehall/Source/WebView/WebContainerViewController.swift index e511f57..5d4ae68 100644 --- a/ylgamehall/Source/WebView/WebContainerViewController.swift +++ b/ylgamehall/Source/WebView/WebContainerViewController.swift @@ -559,10 +559,10 @@ public final class WebContainerViewController: UIViewController { // 无需主动介入。 let alert = UIAlertController( title: "需要升级", - message: "检测到新版本,点击「前往下载」开始更新。\n\n安装确认弹窗出现后请点击「安装」,等待下载完成即可自动替换。", + message: "检测到新版本,点击「确定」前往下载。\n\n安装确认弹窗出现后请点击「安装」,然后从多任务列表上滑退出本 App,更新即可自动完成。", preferredStyle: .alert ) - alert.addAction(UIAlertAction(title: "前往下载", style: .default) { _ in + alert.addAction(UIAlertAction(title: "确定", style: .default) { _ in if let url = URL(string: downloadURL) { UIApplication.shared.open(url) }