NSTimer *tm = [NSTimer timerWithTimeInterval:0.5f target:self
selector:@selector(verifyConverting:)
userInfo:nil repeats:YES];
[[NSRunLoop mainRunLoop] addTimer:tm forMode:NSDefaultRunLoopMode];
[tm fire];
......
[tm invalidate];
本文共 280 字,大约阅读时间需要 1 分钟。
NSTimer *tm = [NSTimer timerWithTimeInterval:0.5f target:self
selector:@selector(verifyConverting:)
userInfo:nil repeats:YES];
[[NSRunLoop mainRunLoop] addTimer:tm forMode:NSDefaultRunLoopMode];
[tm fire];
......
[tm invalidate];
转载于:https://www.cnblogs.com/PJXWang/p/5816696.html