我是IOS的新手。当我们的应用程序在后台时,我想从代码中禁用位置服务。当它进入前景时,它应该启用位置。
请帮帮我。 感谢。
答案 0 :(得分:0)
在AppDelegate中搜索applicationDidEnterInterInBackGround,在此委托方法中添加[yourLocationManager stopUpdatingLocation]
;
以类似方式搜索applicationWIllEnterForeground并添加以下代码
[yourLocationManager startUpdatingLocation]