在我的项目中,我创建了一个方法来下载文件。当应用程序在前台时,我可以使用计时器调用该下载方法
timer = [NSTimer scheduledTimerWithTimeInterval:10 target:self selector:@selector(download:) userInfo:nil repeats:YES];
但是现在我想从 applicationDidEnterBackground 调用这个函数。如果应用程序在后台如何每 10 或 15 分钟调用一次该下载方法?