标签: ios function swift timer
假设我有一个功能,任何功能,我只想运行三秒钟,然后再也不会运行。我该怎么做?我会使用NSTimer吗?谢谢你的帮助。
答案 0 :(得分:1)
你走了,
NSTimer.scheduledTimerWithTimeInterval(3, target: self, selector: Selector("updateProgress:"), userInfo: nil, repeats: false) func updateProgress(timer: NSTimer){ }