我正在开发一个使用后台提取的应用程序。
我需要它每 5 秒在后台执行一次函数,但是使用我在 google 中看到的代码,SO 决定何时调用该函数。
我希望这个函数每 5 秒执行一次。
我的代码在这里:
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
// Override point for customization after application launch.
[[UIApplication sharedApplication] setMinimumBackgroundFetchInterval:UIApplicationBackgroundFetchIntervalMinimum];
return YES;
}