当app在后台IOS时,通过app内的编码禁用位置服务

时间:2015-11-16 11:35:13

标签: ios

我是IOS的新手。当我们的应用程序在后台时,我想从代码中禁用位置服务。当它进入前景时,它应该启用位置。

请帮帮我。 感谢。

1 个答案:

答案 0 :(得分:0)

在AppDelegate中搜索applicationDidEnterInterInBackGround,在此委托方法中添加[yourLocationManager stopUpdatingLocation];

以类似方式搜索applicationWIllEnterForeground并添加以下代码

[yourLocationManager startUpdatingLocation]