- (void)start{
NSTimer *mtimer = [NSTimer scheduledTimerWithTimeInterval:1.0 target:self selector:@selector(scheduleSomeNSTimer:) userInfo:nil repeats:YES];
}
- (void)scheduleSomeNSTimer:(NSTimer *)timer{
NSTimer *newtimer = [NSTimer scheduledTimerWithTimeInterval:60.0 target:self selector:@selector(showAction:) userInfo:nil repeats:NO];
}
- (void)showAction:(NSTimer *)timer{
NSLog(@"action show!");
}
如果我想使按功能调度的 nstimer 之一无效-(void)addSomeNSTimer:(NSTimer *)timer
应用程序将重复创建 newtimer,所以当我需要使这些 newnstimer 之一无效时,我怎样才能找到我需要的对象
例如:应用程序创建 4 个 nstimer 并循环运行我如何找到其中一个并使之无效