1、注册过的定时器
@property(nonatomic,weak)NSTimer *timer;//
//注册定时器
self.timer = [NSTimer scheduledTimerWithTimeInterval:1 target:self selector:@selector(showCount) userInfo:nil repeats:YES];
//停止定时器
[self.timer invalidate];
2、未注册过的定时器
//这是一个未注册的定时器 使用的时候要特别注意
self.timer = [NSTimer timerWithTimeInterval:1 target:self selector:@selector(showText) userInfo:nil repeats:YES];
[[NSRunLoop currentRunLoop] addTimer:self.timer forMode:NSDefaultRunLoopMode];
转载请注明出处:http://blog.csdn.net/sevenquan