我想在动画进度时获取我的ui滑块值,但是我失败了,我使用上面的代码来动画我的ui滑块:
UIView.animate(withDuration: 2, animations: {
self.ProgressLicht.setValue(Float(self.targetLightValue),
animated:true)
self.LabelLicht.text = String(describing: self.ProgressLicht.value) +
"%"} )
因此,当动画开始时,我会看到直接的ui滑块最终值,我希望在进行过程中获得设置值。
像Android上的onProgressChanged?