我是 swift 编程的新手,我不知道如何定期调用一个方法。我有一个用于服务调用的演示应用程序,但我不知道如何在固定的时间间隔内调用它。
最佳答案
您可以创建一个 NSTimer() 对象并在确定的时间间隔上调用一个函数,如下所示:
var updateTimer = NSTimer.scheduledTimerWithTimeInterval(15.0, target: self, selector: "callFunction", userInfo: nil, repeats: true)
这将每 15 秒调用一次 callFunction()。
func callFunction(){
print("function called")
}
关于ios - 快速定期拨打服务电话,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/25055889/