如何为函数添加计时器 - IOS Swift

时间:2015-06-05 03:57:02

标签: ios function swift timer

假设我有一个功能,任何功能,我只想运行三秒钟,然后再也不会运行。我该怎么做?我会使用NSTimer吗?谢谢你的帮助。

1 个答案:

答案 0 :(得分:1)

你走了,

NSTimer.scheduledTimerWithTimeInterval(3, target: self, selector: Selector("updateProgress:"), userInfo: nil, repeats: false)

func updateProgress(timer: NSTimer){
}