天天看點

iOS自帶的GPS 定位

首先導入CoreLocation.framework,然後再引入頭檔案#import 

定義屬性

@property (nonatomic , strong)CLLocationManager *locationManager;
           

然後使用代理  CLLocationManagerDelegate

- (void)locate{
    // 判斷定位操作是否被允許
    if([CLLocationManager locationServicesEnabled]) {
        //定位初始化
        _locationManager=[[CLLocationManager alloc] init];
        _locationManager.delegate=self;
        _locationManager.desiredAccuracy=kCLLocationAccuracyBest;
        _locationManager.distanceFilter=10;
        [_locationManager startUpdatingLocation];//開啟定位
    }else {
        //提示使用者無法進行定位操作
        UIAlertView *alertView = [[UIAlertView alloc]initWithTitle:@提示 message:@定位不成功 ,請确認開啟定位 delegate:nil cancelButtonTitle:@取消 otherButtonTitles:@确定, nil];
        [alertView show];
    }
    // 開始定位
    [_locationManager startUpdatingLocation];
}

#pragma mark - CoreLocation Delegate

-(void)locationManager:(CLLocationManager *)manager didUpdateLocations:(NSArray *)locations
{
    //此處locations存儲了持續更新的位置坐标值,取最後一個值為最新位置,如果不想讓其持續更新位置,則在此方法中擷取到一個值之後讓locationManager stopUpdatingLocation
    CLLocation *currentLocation = [locations lastObject];
    // 擷取目前所在的城市名
    CLGeocoder *geocoder = [[CLGeocoder alloc] init];
    //根據經緯度反向地理編譯出位址資訊
    [geocoder reverseGeocodeLocation:currentLocation completionHandler:^(NSArray *array, NSError *error)
    {
        if (array.count > 0)
        {
            CLPlacemark *placemark = [array objectAtIndex:0];
            //NSLog(@%@,placemark.name);//具體位置
            //擷取城市
            NSString *city = placemark.locality;
            if (!city) {
                //四大直轄市的城市資訊無法通過locality獲得,隻能通過擷取省份的方法來獲得(如果city為空,則可知為直轄市)
               city = placemark.administrativeArea;
            }
            cityName = city;
            NSLog(@定位完成:%@,cityName);
            //系統會一直更新資料,直到選擇停止更新,因為我們隻需要獲得一次經緯度即可,是以擷取之後就停止更新
            [manager stopUpdatingLocation];
         }else if (error == nil && [array count] == 0)
         {
            NSLog(@No results were returned.);
         }else if (error != nil)
         {
             NSLog(@An error occurred = %@, error);
         }
    }];
}
           

在 viewDidLoad 中調用了locate之後一直沒有資料傳回,代理也不執行,在網上找了很多教程,代碼大多大同小異,但是結果都是不理想,偶然之間看到ios8的定位和低版本的不同,我的手機剛好是ios8,便點開那個部落格去看看, 部落格請點此進入

以下為該部落格摘要:

在iOS8以前的版本中,我們使用CLLocationManager定位是沒有問題的,最近在iOS8系統中卻無法定位了。。。。這是一大問題啊!

iOS8中使用CoreLocation定位

1、在使用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];//開啟定位
           

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

(1)NSLocationAlwaysUsageDescription

(2)NSLocationWhenInUseUsageDescription

iOS自帶的GPS 定位

這樣添加後,定位功能就能正常使用了!

//計算兩個位置之間的距離
71 -(void)countDistance
72 {
73     //根據經緯度建立兩個位置對象
74     CLLocation *loc1=[[CLLocation alloc]initWithLatitude:40 longitude:116];
75     CLLocation *loc2=[[CLLocation alloc]initWithLatitude:41 longitude:116];
76     //計算兩個位置之間的距離
77     CLLocationDistance distance=[loc1 distanceFromLocation:loc2];
78     NSLog(@"(%@)和(%@)的距離=%fM",loc1,loc2,distance);
79 }