標籤:des blog http ar io os 使用 sp strong
在iOS8中,蘋果已經強制開發人員在請求定位服務時獲得使用者的授權,此外iOS狀態列中還有指示表徵圖,提示使用者當前應用是否正在使用定位服務。另外在iOS8中,蘋果進一步改善了定位服務,讓開發人員請求定位服務時需要向使用者提供更多的透明。此外,iOS8中還支援讓應用開發人員調用全新的“訪問監控”功能,當使用者允許後應用才能獲得更多的定位元據。
iOS8以前使用CoreLocation定位
1、首先定義一個全域的變數用來記錄CLLocationManager對象,引入CoreLocation.framework使用#import <CoreLocation/CoreLocation.h>
1 |
@property (nonatomic, strong) CLLocationManager *locationManager;
|
2、初始化CLLocationManager並開始定位
12345 |
self.locationManager = [[CLLocationManager alloc]init];_locationManager.delegate = self;_locationManager.desiredAccuracy = kCLLocationAccuracyBest;_locationManager.distanceFilter = 10;[_locationManager startUpdatingLocation];
|
3、實現CLLocationManagerDelegate的代理方法
(1)擷取到位置資料,返回的是一個CLLocation的數組,一般使用其中的一個
12345 |
- (void)locationManager:(CLLocationManager *)manager didUpdateLocations:(NSArray *)locations{ CLLocation *currLocation = [locations lastObject]; NSLog(@"經度=%f 緯度=%f 高度=%f", currLocation.coordinate.latitude, currLocation.coordinate.longitude, currLocation.altitude);}
|
(2)擷取使用者位置資料失敗的回調方法,在此通知使用者
12345678910 |
- (void)locationManager:(CLLocationManager *)manager didFailWithError:(NSError *)error{ if ([error code] == kCLErrorDenied) { //訪問被拒絕 } if ([error code] == kCLErrorLocationUnknown) { //無法擷取位置資訊 }}
|
4、在viewWillDisappear關閉定位
12345 |
- (void)viewWillDisappear:(BOOL)animated{ [super viewWillDisappear:animated]; [_locationManager stopUpdatingLocation];}
|
iOS8中使用CoreLocation定位
1、在使用CoreLocation前需要調用如下函數【iOS8專用】:
iOS8對定位進行了一些修改,其中包括定位授權的方法,CLLocationManager增加了下面的兩個方法:
(1)始終允許訪問位置資訊
- (void)requestAlwaysAuthorization;
(2)使用應用程式期間允許訪問位置資料
- (void)requestWhenInUseAuthorization;
樣本如下:
123456 |
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下的定位授權》
來源轉自:http://blog.devzeng.com/blog/ios8-corelocation-framework.html
iOS8中使用CoreLocation定位