//--每隔 1s 执行一下绑定的 myTimer 方法
NSTimer* timer = [NSTimer scheduledTimerWithTimeInterval:1 target:self selector:@selector(myTimer) userInfo:nil repeats:YES];
//--如果写下面这句话,意味着 创建完,马上运行
[timer fire];
//----用完记得关闭和置空
//--关闭定时器
[timer invalidate];
//--置空安全
timer = nil;
网友评论