标签:
/**
* 开始定时器
*/
-(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;
}
标签:
原文地址:http://blog.csdn.net/guoyule2010/article/details/45117821