/**
* 开始定时器
*/
-(void)addTimer
{
NSTimer * timer = [NSTimer
scheduledTimerWithTimeInterval:2.0
target:self
selector:@selector(nextPage)
userInfo:nil
repeats:YES];
// 这样 timer就不是在主线程中了
一旦主线程有时间 就会
执行这个操作
[[NSRunLoop
mainRunLoop]addTimer:timer
forMode:NSRunLoopCommonModes];
self.timer = timer;
}
/**
* 移除定时器
*/
-(void)removeTimer
{
[self.timer
invalidate];
self.timer =
nil;
}
时间: 2024-12-29 23:34:35