创建计时器有三种方法:
使用
scheduledTimerWithTimeInterval:invocation:repeats:
或scheduledTimerWithTimeInterval:target:selector:userInfo:repeats:
课程 创建计时器并在当前运行循环中计划它的方法 默认模式。使用
timerWithTimeInterval:invocation:repeats:
或timerWithTimeInterval:target:selector:userInfo:repeats:
类方法 创建计时器对象而不在运行循环上安排它。 (后 创建它,您必须通过调用手动将计时器添加到运行循环 相应NSRunLoop对象的addTimer:forMode:
方法。)- 醇>
分配计时器并使用。初始化它
initWithFireDate:interval:target:selector:userInfo:repeats:
方法。 (创建后,必须手动将计时器添加到运行循环中 调用相应addTimer:forMode:
的{{1}}方法 对象)。
上述方法的优点和缺点是:
期待您的回复。