iOS8中使用CoreLocation定位

來源:互聯網
上載者:User

iOS8中使用CoreLocation定位

在iOS8中,蘋果已經強制開發人員在請求定位服務時獲得使用者的授權,此外iOS狀態列中還有指示表徵圖,提示使用者當前應用是否正在使用定位服務。另外在iOS8中,蘋果進一步改善了定位服務,讓開發人員請求定位服務時需要向使用者提供更多的透明。此外,iOS8中還支援讓應用開發人員調用全新的“訪問監控”功能,當使用者允許後應用才能獲得更多的定位元據。

iOS8以前使用CoreLocation定位

1、首先定義一個全域的變數用來記錄CLLocationManager對象,引入CoreLocation.framework使用#import

1 @property (nonatomic, strong) CLLocationManager *locationManager;

2、初始化CLLocationManager並開始定位

1 2 3 4 5 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.coordinrdinate.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後進行添加]:


聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.