iOS获取到用户当前位置

2022-10-21

这篇文章主要为大家详细介绍了iOS获取到用户当前位置,具有一定的参考价值,感兴趣的小伙伴们可以参考一下

通过CoreLocation定位,获取到用户当前位置,跟地图中的定位不同。

一、导入CoreLocation.framework

二、#import <CoreLocation/CoreLocation.h>

三、声明代理 <CLLocationManagerDelegate>

四、代码实现

1、声明

CLLocationManager *locationManager;//定义Manager
// 判断定位操作是否被允许
if([CLLocationManager locationServicesEnabled]) {
  CLLocationManager *locationManager = [[[CLLocationManager alloc] init] autorelease];

   self.locationManager.delegate = self;
}else {
   //提示用户无法进行定位操作
}

// 开始定位
[locationManager startUpdatingLocation];


2、更新位置后代理方法,iOS6.0一下的方法

- (void)locationManager:(CLLocationManager *)manager 
  didUpdateToLocation:(CLLocation *)newLocation 
      fromLocation:(CLLocation *)oldLocation {

 //latitude和lontitude均为NSString型变量
    //纬度
 self.latitude = [NSString stringWithFormat:@"%.4f", newLocation.coordinate.latitude];

    //经度
 self.longitude = [NSString stringWithFormat:@"%.4f",     newLocation.coordinate.longitude];
 
}


3、iOS6.0以上苹果的推荐方法

-(void)locationManager:(CLLocationManager *)manager didUpdateLocations:(NSArray *)locations
{
  //此处locations存储了持续更新的位置坐标值,取最后一个值为最新位置,如果不想让其持续更新位置,则在此方法中获取到一个值之后让locationManager stopUpdatingLocation
  CLLocation *currentLocation = [locations lastObject];
  
  CLLocationCoordinate2D coor = currentLocation.coordinate;
  self.latitude = coor.latitude;
  self.longitude = coor.longitude;
  
  //[self.locationManager stopUpdatingLocation];
  
}

4、更新失败的方法

- (void)locationManager:(CLLocationManager *)manager
    didFailWithError:(NSError *)error {
 
 if (error.code == kCLErrorDenied) {
   // 提示用户出错原因,可按住Option键点击 KCLErrorDenied的查看更多出错信息,可打印error.code值查找原因所在
 }
}

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持北冥有鱼。

您可能感兴趣的文章:

  • 带有定位当前位置的百度地图前端web api实例代码
  • iOS中定位当前位置坐标及转换为火星坐标的方法
  • Android获取当前位置的经纬度数据
  • 在AngularJS中如何使用谷歌地图把当前位置显示出来
  • JS利用cookie记忆当前位置的防刷新导航效果
  • Android实现Service获取当前位置(GPS+基站)的方法
  • thinkphp获取栏目和文章当前位置的方法
  • thinkphp实现面包屑导航(当前位置)例子分享
  • 鼠标移到导航当前位置的LI变色处于选中状态
  • 讲解iOS开发中基本的定位功能实现

《iOS获取到用户当前位置.doc》

下载本文的Word格式文档,以方便收藏与打印。