【发布时间】:2020-12-10 00:52:42
【问题描述】:
我使用以下简单类在我的 iOS 应用程序中显示带有进度条的警报视图。没关系,但是当我尝试在为 macOS 构建的应用程序中使用相同的代码时,进度条不可见(参见附图)。
即使在 macOS 上我也应该改变什么才能有进度条?
protocol ProgressDelegate: class {
func onProgressCanceled()
}
class ProgressAlert {
private let alert: UIAlertController
private var progressBar: UIProgressView
init(title: String, delegate: ProgressDelegate?) {
alert = UIAlertController(title: title, message: "",
preferredStyle: .alert)
progressBar = UIProgressView(progressViewStyle: .default)
progressBar.tintColor = Theme.appColor
alert.addAction(UIAlertAction(title: "Cancel", style: .cancel) { alertAction in
delegate?.onProgressCanceled()
})
}
func present(from uivc: UIViewController) {
uivc.present(alert, animated: true, completion: {
let margin: CGFloat = 16.0
let rect = CGRect(x: margin, y: 56.0,
width: self.alert.view.frame.width - margin * 2.0, height: 2.0)
self.progressBar.frame = rect
self.alert.view.addSubview(self.progressBar)
})
}
func dismiss(completion: (() -> Void)?) {
alert.dismiss(animated: true, completion: completion)
}
func setProgress(_ value: Float) {
progressBar.setProgress(value, animated: true)
print("Updating download: \(value)")
}
}
【问题讨论】:
标签: ios swift macos mac-catalyst