iOS iOS9.0 的CoreLocation定位,ios9.0corelocation

來源:互聯網
上載者:User

iOS iOS9.0 的CoreLocation定位,ios9.0corelocation
一、簡介

  • iOS9.0如果當前處於前台授權狀態,預設是不可以後台擷取使用者位置。
    • 如果在前台授權下,讓其能擷取到後台定位,該怎麼辦
      • 可以設定以下屬性為YES,就可以繼續擷取後台位置,但是會出現藍條
      • 使用注意:必須設定對應的後台模式,勾選後台模式:location updates
        @property(assign,nonatomic) BOOL allowsBackgroundLocationUpdates
  • 注意:iOS9.0 可以單次請求使用者位置

    - (void)requestLocation  // 成功調用,locations位置數組,元素按照時間排序-(void)locationManager:(nonnull CLLocationManager *)manager didUpdateLocations:(nonnull NSArray<CLLocation *> *)locations // 失敗調用-(void)locationManager:(nonnull CLLocationManager *)manager didFailWithError:(nonnull NSError *)error
    • requestLocation 作用:
      • 按照定位精確度從低到高進行排序,逐個進行定位。如果擷取到的位置不是精確度最高的那個,也會在定位逾時後,通過代理告訴外界(必須實現代理的-locationManager:didFailWithError:方法)
      • 不能與startUpdatingLocation方法同時使用
二、實現步驟1、 前台定位
  • 1.匯入CoreLocation架構和對應的主標頭檔
     #import <CoreLocation/CoreLocation.h>
  • 建立CLLcationManager對象,並設定代理 請求前台定位授權,並配置KEY

    配置KEY .png
    _locationM = [[CLLocationManager alloc] init];  _locationM.delegate = self;  if ([[UIDevice currentDevice].systemVersion floatValue] >= 8.0)       {          [_locationM requestWhenInUseAuthorization];      }
  • 3.調用CLLcationManager對象的startUpdatingLocation方法進行更新使用者位置
    [_locationM startUpdatingLocation];
  • 4.實現代理方法,接收位置參數
    -(void)locationManager:(nonnull CLLocationManager *)manager didUpdateLocations:(nonnull NSArray<CLLocation *> *)locations
2、後台定位
  • 方案一:在APP處於前台定位授權情境下,勾選後台運行模式update locations (如) 並且,調用以下方法,設定允許後台定位


    勾選後台模式.png
    if ([[UIDevice currentDevice].systemVersion floatValue] >= 9.0) {   _locationM.allowsBackgroundLocationUpdates = YES;}
    • 注意:如果APP處於後台,則會出現藍條
  • 方案二:請求前後台定位授權,並配置KEY

    [_locationM requestAlwaysAuthorization];



文/iOS_成才錄(簡書作者)
原文連結:http://www.jianshu.com/p/a9a94cbcb775
著作權歸作者所有,轉載請聯絡作者獲得授權,並標註“簡書作者”。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.