iOS8中使用CoreLocation定位[轉]

來源:互聯網
上載者:User

標籤:

本文轉自:http://blog.devzeng.com/blog/ios8-corelocation-framework.htmliOS8以前使用CoreLocation定位

1、首先定義一個全域的變數用來記錄CLLocationManager對象,引入CoreLocation.framework使用#import <CoreLocation/CoreLocation.h>

   @property (nonatomic, strong) CLLocationManager *locationManager;

 

2、初始化CLLocationManager並開始定位

self.locationManager = [[CLLocationManager alloc]init];_locationManager.delegate = self;_locationManager.desiredAccuracy = kCLLocationAccuracyBest;_locationManager.distanceFilter = 10;[_locationManager startUpdatingLocation];
 

3、實現CLLocationManagerDelegate的代理方法

(1)擷取到位置資料,返回的是一個CLLocation的數組,一般使用其中的一個

- (void)locationManager:(CLLocationManager *)manager didUpdateLocations:(NSArray *)locations{    CLLocation *currLocation = [locations lastObject];    NSLog(@"經度=%f 緯度=%f 高度=%f", currLocation.coordinate.latitude, currLocation.coordinate.longitude, currLocation.altitude);}
 

(2)擷取使用者位置資料失敗的回調方法,在此通知使用者

- (void)locationManager:(CLLocationManager *)manager didFailWithError:(NSError *)error{    if ([error code] == kCLErrorDenied)    {        //訪問被拒絕    }    if ([error code] == kCLErrorLocationUnknown) {        //無法擷取位置資訊    }}
 

4、在viewWillDisappear關閉定位

- (void)viewWillDisappear:(BOOL)animated{    [super viewWillDisappear:animated];    [_locationManager stopUpdatingLocation];}
 iOS8中使用CoreLocation定位

1、在使用CoreLocation前需要調用如下函數【iOS8專用】:

iOS8對定位進行了一些修改,其中包括定位授權的方法,CLLocationManager增加了下面的兩個方法:

(1)始終允許訪問位置資訊

- (void)requestAlwaysAuthorization;

(2)使用應用程式期間允許訪問位置資料

- (void)requestWhenInUseAuthorization;

樣本如下:

self.locationManager = [[CLLocationManager alloc]init];_locationManager.delegate = self;_locationManager.desiredAccuracy = kCLLocationAccuracyBest;_locationManager.distanceFilter = 10;[_locationManager requestAlwaysAuthorization];//添加這句[_locationManager startUpdatingLocation];
 

2、在Info.plist檔案中添加如下配置:

(1)NSLocationAlwaysUsageDescription

(2)NSLocationWhenInUseUsageDescription

這兩個鍵的值就是授權alert的描述,樣本配置如下[勾選Show Raw Keys/Values後進行添加]:

 

 

 

參考資料

1、《迎接iOS8 – CoreLocation的變化》

2、《IOS開發之Core Location》

3、《IOS8下的定位授權》

 

iOS8中使用CoreLocation定位[轉]

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.