0

我想制作一个应用程序,每 xx 分钟将用户位置更新到我的远程服务器,即使应用程序在后台我也尝试过以下代码

- (void)applicationDidEnterBackground:(UIApplication *)application
{
    i=0;
    UIApplication  *app = [UIApplication sharedApplication];
    bgTask = [app beginBackgroundTaskWithExpirationHandler:^{ 
        [app endBackgroundTask:bgTask]; 
        bgTask = UIBackgroundTaskInvalid;
    }];
    bgTimer = [NSTimer scheduledTimerWithTimeInterval:1.0 target:self selector:@selector(backgroundTask:) userInfo:nil repeats:YES];

}

-(void)backgroundTask:(NSTimer*)timer{

    i++;
    NSLog(@"%s  %d",__func__,i);
}

但是计时器回调在大约 10 分钟后停止如何制作一个不断更新当前位置到我的服务器的应用程序

4

2 回答 2

3

您可能在应用的 Info.plist 文件中缺少Background Modes键:

<key>UIBackgroundModes</key>
    <array>
            <string>location</string>
    </array>

这使您的应用程序可以在后台访问位置服务。

但是,这种事情已经被问过很多次了,所以也稍微浏览一下其他堆栈溢出问题以获取更多信息。

这是另一个要阅读的内容。

于 2012-06-05T10:08:11.553 回答
0

您只能在后台更新 3 分钟。使用以下代码将 Capabilities-> BackgroundFetch 设置为大于或等于 3 个字段

调用这个 didenterbackground 或 foreground

var time = 120
func applicationDidEnterBackground(_ application: UIApplication)
    {
        time = 180
        self.doBackgroundTask()
    }

 var timerBack  = Timer()
    func doBackgroundTask() {

        DispatchQueue.global(qos: DispatchQoS.QoSClass.default).async {
            self.beginBackgroundUpdateTask()


            self.timerBack = Timer.scheduledTimer(timeInterval: 1, target: self, selector: #selector(AppDelegate.displayAlert), userInfo: nil, repeats: true)
            RunLoop.current.add(self.timerBack, forMode: RunLoopMode.defaultRunLoopMode)
            RunLoop.current.run()

            self.endBackgroundUpdateTask()
        }
    }
    var backgroundUpdateTask: UIBackgroundTaskIdentifier!

    func beginBackgroundUpdateTask() {
        self.backgroundUpdateTask = UIApplication.shared.beginBackgroundTask(expirationHandler: {
            self.endBackgroundUpdateTask()
        })
    }

    func endBackgroundUpdateTask() {
        UIApplication.shared.endBackgroundTask(self.backgroundUpdateTask)
        self.backgroundUpdateTask = UIBackgroundTaskInvalid
    }

//做你想做的

func displayAlert{


}
于 2016-12-07T12:36:27.330 回答