在iOS8之前的版本中,咱們使用CLLocationManager定位是沒有問題的,最近在iOS8系統中卻沒法定位了。。。。這是一大問題啊!git
一、首先定義一個全局的變量用來記錄CLLocationManager對象,引入CoreLocation.framework使用#import <CoreLocation/CoreLocation.h>
@property (nonatomic, strong) CLLocationManager *locationManager;
二、初始化CLLocationManager並開始定位
locationManager=[[CLLocationManager alloc] init]; locationManager.delegate=self; locationManager.desiredAccuracy=kCLLocationAccuracyBest; locationManager.distanceFilter=10; [locationManager startUpdatingLocation];//開啓定位
三、實現CLLocationManagerDelegate的代理方法
#pragma mark CLLocationManagerDelegate /** * 獲取經緯度 */ -(void)locationManager:(CLLocationManager *)manager didUpdateLocations:(NSArray *)locations{ CLLocation *currLocation=[locations lastObject]; location.strLatitude=[NSString stringWithFormat:@"%f",currLocation.coordinate.latitude]; location.strLongitude=[NSString stringWithFormat:@"%f",currLocation.coordinate.longitude]; NSLog(@"la---%f, lo---%f",currLocation.coordinate.latitude,currLocation.coordinate.longitude); } /** *定位失敗,回調此方法 */ -(void)locationManager:(CLLocationManager *)manager didFailWithError:(NSError *)error{ if ([error code]==kCLErrorDenied) { NSLog(@"訪問被拒絕"); } if ([error code]==kCLErrorLocationUnknown) { NSLog(@"沒法獲取位置信息"); } }
iOS8中使用CoreLocation定位函數
一、在使用CoreLocation前須要調用以下函數【iOS8專用】: iOS8對定位進行了一些修改,其中包括定位受權的方法,CLLocationManager增長了下面的兩個方法: (1)始終容許訪問位置信息
- (void)requestAlwaysAuthorization;
(2)使用應用程序期間容許訪問位置數據
- (void)requestWhenInUseAuthorization;
示例以下:
locationManager=[[CLLocationManager alloc] init]; locationManager.delegate=self; locationManager.desiredAccuracy=kCLLocationAccuracyBest; locationManager.distanceFilter=10; if (iOSVersion>=8) { [locationManager requestWhenInUseAuthorization];//使用程序其間容許訪問位置數據(iOS8定位須要) } [locationManager startUpdatingLocation];//開啓定位
二、在Info.plist文件中添加以下配置: (1)NSLocationAlwaysUsageDescription (2)NSLocationWhenInUseUsageDescription
這樣添加後,定位功能就能正常使用了!