gpt4 book ai didi

ios - 创建一个 UIProgressView 在 3 秒内从 0.0(空)到 1.0(满)

转载 作者:行者123 更新时间:2023-11-30 14:13:55 28 4
gpt4 key购买 nike

基本上我想创建一个 UIProgressView 在 3 秒内从 0.0(空)到 1.0(满)。有人能指出我在 swift 中使用 NSTimer 与 UIProgressView 的正确方向吗?

最佳答案

如果有人对这里的 Swift 5 工作版本感兴趣:

extension UIProgressView {
@available(iOS 10.0, *)
func setAnimatedProgress(progress: Float = 1, duration: Float = 1, completion: (() -> ())? = nil) {
Timer.scheduledTimer(withTimeInterval: 1, repeats: true) { (timer) in
DispatchQueue.main.async {
let current = self.progress
self.setProgress(current+(1/duration), animated: true)
}
if self.progress >= progress {
timer.invalidate()
if completion != nil {
completion!()
}
}
}
}
}

用法:

// Will fill the progress bar in 70 seconds
self.progressBar.setAnimatedProgress(duration: 70) {
print("Done!")
}

关于ios - 创建一个 UIProgressView 在 3 秒内从 0.0(空)到 1.0(满),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31430860/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com