Swift 2中的循环进度计时器动画

时间:2016-06-20 13:32:37

标签: ios xcode swift animation timer

我正在尝试使用MBCircularProgress框架来创建动画循环计时器。我不确定如何将它与我设置的时间相关联(我正在使用MZTimerLabel框架)。以下是我到目前为止的情况:

// workout time
let workoutTimeLong = 30.0

// the view of type MBCircularProgressBarView
@IBOutlet weak var progressTimer: MBCircularProgressBarView!

//the timer label
@IBOutlet weak var timerLabel: MZTimerLabel!

self.progressTimer.setValue(55, animateWithDuration: 1)

我确实看过给定的方法,但这是我在Swift中的第一个项目,所以我迷失了如何通过代码连接它。上面的代码给了我一个“线程1:EXC_BAD_INSTRUCTION”错误。感谢。

1 个答案:

答案 0 :(得分:0)

您需要确保将此行放在文件的顶部。

import MBCircularProgressBar

我并不完全理解你将它与你设定的时间联系起来的意思,但它可能看起来像这样。

progressBar.setValue(CGFloat(workoutTimeLong), animateWithDuration: 1.0)