我想在我的应用程序的额外线程中创建一个计时器。我对可可触摸很新,所以我很感谢所有好的解释。谢谢!
致以最诚挚的问候 : - )
答案 0 :(得分:0)
您可以使用这样的计时器更新功能:
NSTimer _countDownTimer = [NSTimer scheduledTimerWithTimeInterval:1.0f
target:self
selector:@selector(countDownUpdate)
userInfo:nil
repeats:YES];
仅供参考:这并不能确保这个" countDownUpdate"每秒都会被调用,但想法是你检查这个方法中的实时。您可以查看日历或NSDate时间。