我在我的应用程序中使用核心位置来获取应用程序首先启动时用户的位置,然后在后台进入前台时获取用户的位置。拍好位置后
NSString *mylatitude = [[NSNumber numberWithDouble:location.coordinate.latitude] description];
我正在停止服务:
[locationController.locationManager stopUpdatingLocation];
[locationController.locationManager stopMonitoringSignificantLocationChanges];
我正在使用委托类来获取对象为 locationController 的位置。然后再次从后台回来时,我再次通过以下方式启动服务
[locationController.locationManager startUpdatingLocation];
在模拟器和设备上一切正常。但在设备日志中我看到一条奇怪的消息,比如
CoreLocation: CLClient is deprecated. Will be obsolete soon.
我很困惑它会从哪里来,为什么?有人可以指导我解决这个问题吗?