0

同时支持 iOS 5 和 6,应该didUpdateLocationsdidUpdateToLocation.

您如何拨打电话并构建 Locations 数组?请问有代码示例吗?

谢谢你。

4

2 回答 2

1

你不调用这些例程。系统,特别是CoreLocation,调用它们。

于 2013-08-23T18:04:54.457 回答
0

我认为这个确切的代码显示在 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
 }
于 2013-08-23T19:01:54.543 回答