iOS-CoreLocation:无论你在哪里,我都要找到你!

作者:@翁呀伟呀 授权本站转载

CoreLocation

1.定位

使用步骤:

  • 创建CLLocationManager示例,并且需要强引用它
  • 设置CLLocationManager的代理,监听并获取所更新的位置
  • 启动位置更新

1

2

3

_manager?=?[[CLLocationManager?alloc]?init];

_manager.delegate?=?self;

[_manager?startUpdatingLocation];

由于在iOS8中,需要开发者主动向系统请求授权,所以在iOS8及以上系统中,需要以下步骤:

  • 在info.plist文件中设置NSLocationWhenInUseUsageDescription或NSLocationAlwaysUsageDescription
  • 在代码中使用[_manager requestWhenInUseAuthorization]请求授权
  • 实现Manager的代理方法didChangeAuthorizationStatus:,根据状态判断是否启动位置更新

参数分析

在Manager的代理方法locationManager: didUpdateLocations:中,其传入的locations参数是CLLocation类型。

CLLocation方法的主要参数:


1

2

3

4

5

6

7

8

//经纬度

@property(readonly,?nonatomic)?CLLocationCoordinate2D?coordinate;

//海平面

@property(readonly,?nonatomic)?CLLocationDistance?altitude;

//速度

@property(readonly,?nonatomic)?CLLocationSpeed?speed

//当前时间戳

@property(readonly,?nonatomic,?copy)?NSDate?*timestamp;

2.方向

使用步骤

和定位一样的三个步骤,不同的是获取方向不需要授权


1

2

3

_manager?=?[[CLLocationManager?alloc]?init];

_manager.delegate?=?self;

[_manager?startUpdatingHeading];

参数分析

在Manager的代理方法locationManager: didUpdateHeading:中,其传入的newHeading参数是CLHeading类型。

CLHeading方法的主要参数:


1

2

3

4

//与磁北方向的偏角

@property(readonly,?nonatomic)?CLLocationDirection?magneticHeading;

//与正北方向的偏角

@property(readonly,?nonatomic)?CLLocationDirection?trueHeading;

3.区域监听

使用步骤

也需要大致三个步骤,其中前两个步骤和定位一样,第三个步骤是创建一个范围:


1

2

3

4

5

6

7

8

_manager?=?[[CLLocationManager?alloc]?init];

_manager.delegate?=?self;

if?([[UIDevice?currentDevice].systemVersion?doubleValue]?>=?8.0)?{

???[_manager?requestAlwaysAuthorization];

}

CLLocationCoordinate2D?coordinate?=?CLLocationCoordinate2DMake(32.656688,?110.74677);

CLCircularRegion?*circular?=?[[CLCircularRegion?alloc]?initWithCenter:coordinate?radius:1000?identifier:@"bourne"];

[_manager?startMonitoringForRegion:circular];

代理方法(一进一出)


1

2

3

4

5

6

7

8

//进入范围时调用

-?(void)locationManager:(CLLocationManager?*)manager?didEnterRegion:(CLRegion?*)region?{

????NSLog(@"我进来了!");

}

//离开范围时调用

-?(void)locationManager:(CLLocationManager?*)manager?didExitRegion:(CLRegion?*)region?{

????NSLog(@"我出去了!");

}

HELP:在iOS8.3中好像没作用,真机和模拟器都不行,iOS7.1正常工作!我也不知道怎么回事儿,如果有人知道希望能告诉我一下。谢谢。

4.地理编码 & 反地理编码

所谓地理编码就是你给他一个地名,它返回给你此地的经纬度等信息;反地理编码就是你给他一个经纬度,它返回给你一个地名。如果没用到定位功能就不需要授权。

地理编码


1

2

3

4

5

_coder?=?[[CLGeocoder?alloc]?init];

[_coder?geocodeAddressString:@"湖北汽车工业学院"?completionHandler:^(NSArray?*placemarks,?NSError?*error)?{

???CLPlacemark?*marks?=?placemarks.firstObject;

???NSLog(@"%f?-?%f",?marks.location.coordinate.latitude,?marks.location.coordinate.longitude);

}];

CLPlacemark中有很多可用的属性,大家可以进去看看。

反地理编码


1

2

3

4

5

6

CLLocation?*loc?=?[[CLLocation?alloc]?initWithLatitude:32.656688?longitude:110.74677];

[_coder?reverseGeocodeLocation:loc?completionHandler:^(NSArray?*placemarks,?NSError?*error)?{

???for?(CLPlacemark?*mark?in?placemarks)?{

???????NSLog(@"%@",?mark.name);

???}

}];

实现起来比较简单,关键在于如何使用这些数据!

扩展

CoreLocation使用起来还是比较麻烦的,需要授权,判断系统版本等等,所以一边推荐使用第三方框架,比如:LocationManager就很不错,使用Block,十分简单!

时间: 2024-11-10 05:07:44

iOS-CoreLocation:无论你在哪里,我都要找到你!的相关文章

转:iOS-CoreLocation:无论你在哪里,我都要找到你!

1.定位 使用步骤: 创建CLLocationManager示例,并且需要强引用它 设置CLLocationManager的代理,监听并获取所更新的位置 启动位置更新 1 2 3 _manager = [[CLLocationManager alloc] init]; _manager.delegate = self; [_manager startUpdatingLocation]; 由于在iOS8中,需要开发者主动向系统请求授权,所以在iOS8及以上系统中,需要以下步骤: 在info.pli

iOS CoreLocation之区域监测

CoreLocation的区域监测,下图来自疯狂iOS讲义 1.引CoreLocation框架,导入头文件 #import <CoreLocation/CoreLocation.h> 2.添加定位管理为成员变量,添加延迟加载 @property (nonatomic,strong) CLLocationManager *locMgr; 1 /** 2 * 懒加载 3 */ 4 - (CLLocationManager *)locMgr 5 { 6 if (_locMgr == nil) { 7

基于Vue公众号开发中的哪些坑 (严重鄙视ios,遇到的坑基本都是在ios中)

一.ios白屏问题ios端基于vue开发的H5无法正常显示,白屏问题1.代码问题确定方法:在ie/edge浏览器中打开,看是否正常显示,如果仍然白屏,可以确定问题解决方法:1.代码中是否使用es6,如果使用,确定使用es6转es5,(npm install babel-polyfillnpm install es6-promise)2.参考 https://www.cnblogs.com/love314159/articles/9355785.html3.以上方法都不行的话,查看源码是在main

iOS CoreLocation的使用

1.引入框架,import头文件 #import <CoreLocation/CoreLocation.h> 2.添加定位管理器为成员变量(否则无法定位),并用延迟加载的方法实例化它 @property (nonatomic,strong) CLLocationManager *locMgr; 1 /** 2 * 懒加载 3 */ 4 - (CLLocationManager *)locMgr 5 { 6 if (_locMgr == nil) { 7 _locMgr = [[CLLocati

ios CoreLocation定位服务

CoreLocation导入框架  :#import <CoreLocation/CoreLocation.h> 需要了解的基本的属性和方法: 属性: 定位管理者:CLLocationManager 请求定位权限:requestAlwaysAuthorization 开始获取位置:startUpdatingLocation 停止获取位置:stopUpdatingLocation 授权认证状态:CLAuthorizationStatus 过滤定位的距离:distanceFilter 定位所需精度

iOS CoreLocation框架

官方参考文档:https://developer.apple.com/documentation/corelocation/cllocationmanager 导入CoreLocation框架和对应的主头文件 #import <CoreLocation/CoreLocation.h> 创建CLLcationManager对象,并设置代理 _locationM = [[CLLocationManager alloc] init]; _locationM.delegate = self; if (

自己总结的 iOS ,Mac 开源项目以及库,知识点------持续更新

自己在 git  上看到一个非常好的总结的东西,但是呢, fork  了几次,就是 fork  不到我的 git 上,干脆复制进去,但是,也是认真去每一个每一个去认真看了,并且也是补充了一些,感觉非常棒,所以好东西要分享,为啥用 CN 博客,有个好处,可以随时修改,可以持续更新,不用每次都要再发表,感觉这样棒棒的 我们 自己总结的iOS.mac开源项目及库,持续更新.... github排名 https://github.com/trending,github搜索:https://github.

iOS开发 非常全的三方库、插件、大牛博客等等

UI 下拉刷新 EGOTableViewPullRefresh- 最早的下拉刷新控件. SVPullToRefresh- 下拉刷新控件. MJRefresh- 仅需一行代码就可以为UITableView或者CollectionView加上下拉刷新或者上拉刷新功能.可以自定义上下拉刷新的文字说明.具体使用看"使用方法". (国人写) XHRefreshControl- XHRefreshControl 是一款高扩展性.低耦合度的下拉刷新.上提加载更多的组件.(国人写) CBStoreHo

iOS、mac开源项目及库汇总

UI 下拉刷新 EGOTableViewPullRefresh – 最早的下拉刷新控件. SVPullToRefresh – 下拉刷新控件. MJRefresh – 仅需一行代码就可以为UITableView或者CollectionView加上下拉刷新或者上拉刷新功能.可以自定义上下拉刷新的文字说明.具体使用看“使用方法”. (国人写) XHRefreshControl – XHRefreshControl 是一款高扩展性.低耦合度的下拉刷新.上提加载更多的组件.(国人写) CBStoreHou