可以使用以下方法开启
NSTimer *timer = [NSTimer scheduledTimerWithTimeInterval: 1.0 target:self selector:@selector(logAction:) userInfo:nil repeats:YES];
使用以下方法停止该操作
[timer invalidate];
NSTimer *timer = [NSTimer scheduledTimerWithTimeInterval: 1.0 target:self selector:@selector(logAction:) userInfo:nil repeats:YES];
[timer invalidate];
本文标题:iOS - 定时重复操作
本文链接:https://www.haomeiwen.com/subject/hpuclxtx.html
网友评论