在iOS8中,蘋果已經強制開發者在請求定位服務時得到用戶的受權,此外iOS狀態欄中還有指示圖標,提示用戶當前應用是否正在使用定位服務。另外在iOS8中,蘋果進一步改善了定位服務,讓開發者請求定位服務時須要向用戶提供更多的透明。此外,iOS8中還支持讓應用開發者調用全新的「訪問監控」功能,當用戶容許後應用才能得到更多的定位數據。ios
一、首先定義一個全局的變量用來記錄CLLocationManager對象,引入CoreLocation.framework
使用#import
git
1 @property (nonatomic, strong) CLLocationManager *locationManager;
二、初始化CLLocationManager並開始定位數組
1 self.locationManager = [[CLLocationManager alloc]init]; 2 _locationManager.delegate = self; 3 _locationManager.desiredAccuracy = kCLLocationAccuracyBest; _locationManager.distanceFilter = 10; 4 [_locationManager startUpdatingLocation];
三、實現CLLocationManagerDelegate的代理方法app
(1)獲取到位置數據,返回的是一個CLLocation的數組,通常使用其中的一個函數
1 - (void)locationManager:(CLLocationManager *)manager didUpdateLocations:(NSArray *)locations 2 { 3 CLLocation *currLocation = [locations lastObject]; 4 NSLog(@經度=%f 緯度=%f 高度=%f, currLocation.coordinrdinate.longitude, currLocation.altitude); 5 }
(2)獲取用戶位置數據失敗的回調方法,在此通知用戶atom
1 - (void)locationManager:(CLLocationManager *)manager didFailWithError:(NSError *)error 2 { if ([error code] == kCLErrorDenied) 3 { //訪問被拒絕 } 4 if ([error code] == kCLErrorLocationUnknown) 5 { //沒法獲取位置信息 6 } 7 }
四、在viewWillDisappear
關閉定位spa
1 - (void)viewWillDisappear:(BOOL)animated{ 2 [super viewWillDisappear:animated]; 3 [_locationManager stopUpdatingLocation]; 4 }
一、在使用CoreLocation前須要調用以下函數【iOS8專用】:代理
iOS8對定位進行了一些修改,其中包括定位受權的方法,CLLocationManager增長了下面的兩個方法:code
(1)始終容許訪問位置信息對象
- (void)requestAlwaysAuthorization;
(2)使用應用程序期間容許訪問位置數據
- (void)requestWhenInUseAuthorization;
示例以下:
1 self.locationManager = [[CLLocationManager alloc]init]; 2 _locationManager.delegate = self; 3 _locationManager.desiredAccuracy = kCLLocationAccuracyBest;//精確度最好 4 _locationManager.distanceFilter = 10;//每移動10米刷新一次 5 [_locationManager requestAlwaysAuthorization]; 6 //添加這句[_locationManager startUpdatingLocation];
固然你也可讓locatonManager成爲懶加載對象;不是老是手動申請受權,而是判斷設備高於iOS8以後才申請
示例以下:
懶加載:
1 - (CLLocationManager *)locationManager 2 { 3 if (!_locationManager) { 4 self.locationManager = [[CLLocationManager alloc] init]; 5 } 6 return _locationManager; 7 }
ios8以上設備申請受權:
1 if ([[UIDevice currentDevice].systemVersion doubleValue]>=8.0) { 2 [self.locationManager requestWhenInUseAuthorization];//我不喜歡那些亂七八糟的設置,申請就只作申請,其餘的其餘地方設置 3 }
(實現代碼不惟一,沒我的的代碼洗好都不一樣,問題解決最重要)
二、在Info.plist文件中添加以下string類型配置:
(1)NSLocationAlwaysUsageDescription
(2)NSLocationWhenInUseUsageDescription
這兩個鍵的值就是受權alert的描述,示例配置以下[勾選Show Raw Keys/Values後進行添加
]: