ios中位置服务的多个位置?

时间:2015-10-02 12:19:32

标签: objective-c location-services

我的问题是从#CLLocation管理器获取多个位置以及如何在目标C中创建x和y轴。

1 个答案:

答案 0 :(得分:0)

存储在委托方法中的所有位置:

- (void)locationManager:(CLLocationManager *)manager 
    didUpdateToLocation:(CLLocation *)newLocation 
           fromLocation:(CLLocation *)oldLocation

上面的代理在iOS 6中已弃用。现在应使用以下代码:

- (void)locationManager:(CLLocationManager *)manager 
     didUpdateLocations:(NSArray *)locations

为了获得最后一个位置,只需获取数组的最后一个对象:

[locations lastObject]