我是iphone初学者......
之间有什么区别
+ scheduledTimerWithTimeInterval:target:selector:userInfo:repeats:
和
+ timerWithTimeInterval:target:selector:userInfo:repeats:
也适用于
+ scheduledTimerWithTimeInterval:invocation:repeats:
和
+ timerWithTimeInterval:invocation:repeats:
我将使用两种方式但在这种情况下我使用NSTimer的类方法?....
答案 0 :(得分:2)
scheduledTimerWithTimeInterval:target:selector:userInfo:repeats
:立即启动NSTimer 并返回NSTimer
2。
timerWithTimeInterval:target:selector:userInfo:repeats
:
将返回给你NSTimer
并且你应该做些什么来让它开始。
赞[[NSRunLoop mainRunLoop] addTimer:self.timer forMode:NSRunLoopCommonModes];
不要忘记使计时器无效,如:
-(void)stopTimer {
[self.timer invalidate];
[self.timer = nil];
}