同时支持 iOS 5 和 6,应该didUpdateLocations
从didUpdateToLocation
.
您如何拨打电话并构建 Locations 数组?请问有代码示例吗?
谢谢你。
你不调用这些例程。系统,特别是CoreLocation,调用它们。
我认为这个确切的代码显示在 WWDC 2012 会议中,使用定位服务保持正轨:
- (void)locationManager:(CLLocationManager *)manager didUpdateToLocation:(CLLocation *)newLocation fromLocation:(CLLocation *)oldLocation
{
[self locationManager:manager didUpdateLocations:@[newLocation]];
}
-(void)locationManager:(CLLocationManager *)manager didUpdateLocations:(NSArray *)locations
{
// your location handling code
}