iPhone開發應用中CoreLocation定位學習筆記

來源:互聯網
上載者:User

iPhone開發應用中CoreLocation定位學習是本文要介紹的內容,iPhone可以使用CoreLocation架構確定他的物理位置,可以利用三種技術來實現該功能:GPS,WiFi定位和蜂窩基站三角網定位。但在程式中我們只需設定我們希望的精度層級,由CoreLocation決定採用哪種技術可以更好的滿足我們的請求。

1、位置管理器

 
  1. CLLocationManager *locationManager = [[CLLocationManager alloc] init];//建立位置管理器  
  2. locationManager.delegate=self;//設定代理  
  3. locationManager.desiredAccuracy=kCLLocationAccuracyBest;//指定需要的精度層級  
  4. locationManager.distanceFilter=1000.0f;//設定距離篩選器  
  5. [locationManager startUpdatingLocation];//啟動位置管理器 

2、位置管理器代理

主要的代理方法有兩個

 
  1. //確定當前位置和位置更新了時調用這個方法  
  2.  
  3. - (void)locationManager:(CLLocationManager *)manager  
  4. didUpdateToLocation:(CLLocation *)newLocation  
  5.    fromLocation:(CLLocation *)oldLocation  
  6. {  
  7. NSString *latitudeString=[[NSString alloc] initWithFormat:@"%g",newLocation.coordinate.latitude];  
  8. //latitudeLabel.text=latitudeString;  
  9. [latitudeString release];  
  10. NSString *longitudeString=[[NSString alloc] initWithFormat:@"%g",newLocation.coordinate.longitude];  
  11. //longitudeLabel.text=longitudeString;  
  12. [longitudeString release];  
  13. }  
  14. //位置查詢遇到錯誤時調用這個方法  
  15.  
  16.  (void)locationManager:(CLLocationManager *)manager  
  17.   didFailWithError:(NSError *)error  
  18. {  
  19. NSString *errorType = (error.code == kCLErrorDenied) ?  
  20.    @"Access Denied" : @"Unknown Error";  
  21.    UIAlertView *alert = [[UIAlertView alloc]  
  22.                          initWithTitle:@"Error getting Location"  
  23.                           message:errorType  
  24.                           delegate:nil  
  25.                           cancelButtonTitle:@"Okay"  
  26.                           otherButtonTitles:nil];  
  27.     [alert show];  
  28.     [alert release];  

小結:iPhone開發應用中CoreLocation定位學習筆記的內容介紹完了,希望本文對你有所協助。

相關文章

聯繫我們

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