標籤:
本文轉自: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定位[轉]