我有以下代码,每次用户单击特定按钮时都会运行 1 分钟。
timer = [[NSTimer alloc]init];
timer=[NSTimer scheduledTimerWithTimeInterval:1 target:self selector:@selector(timerFired) userInfo:nil repeats:YES];
[[NSRunLoop mainRunLoop] addTimer:timer forMode:NSRunLoopCommonModes];
我的问题是,如果应用程序处于后台模式,如何保持它运行,以便计时器继续工作?
提前致谢!