NSTimer (定时器)
- 更可靠和高精度的 iOS 定时器
- iOS 经典讲解之 NSTimer、CADisplayLink、GCD 三种定时器的使用
定时器是让程序定时执行某一个方法
每隔 1 秒钟调用 timerAction 方法
[NSTimer scheduledTimerWithTimeInterval:1 //间隔时间:1s
target:self
selector:@selector(timerAction:) //调用的方法:timerAction:
userInfo:@"参数"
repeats:YES]; //是否重复调用