博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
MKReverseGeocoder 过时,IOS5中使用CLGeocoder
阅读量:5458 次
发布时间:2019-06-15

本文共 1591 字,大约阅读时间需要 5 分钟。

MKReverseGeocoder 过时,IOS5中使用CLGeocoder

CLGeocoder是iOS5中新加的一个类,其实跟之前的MKReverseGeocoder很相似,不过CLGeocoder是以一种block的形式来反向地理编码的。

看了官方的文档,MKReverseGeocoder在iOS5中被禁止了,但其实你还是可以使用这个的,只不过在未来的某个时间,会从文档中删除掉,而且苹果这次增加的CLGeocoder类,跟CoreLocation整合在了一起,其实想想也应该是一起的,定位,反向,本应该属于一个系列的。

CLGeocoder类中有几个方法,一个是把经纬度转化成大家能看懂的信息,比如:city,county,街道等等,CLGeocoder类中的其他几个方法也非常的给里,可以把city,county等信息直接转化为坐标,以前大家可能都去githud上下载过把地点名字转回到坐标的demo,现在不用了,apple直接提供了接口给大家使用,我也今天才发现的...哎

1 // reverse geocode requests 2 - (void)reverseGeocodeLocation:(CLLocation *)location completionHandler:(CLGeocodeCompletionHandler)completionHandler; 3 // forward geocode requests 4 // geocodeAddressDictionary:completionHandler: takes an address dictionary as defined by the AddressBook framework. 5 // You can obtain an address dictionary from an ABPerson by retrieving the kABPersonAddressProperty property. 6 // Alternately, one can be constructed using the kABPersonAddress* keys defined in 
. 7 - (void)geocodeAddressDictionary:(NSDictionary *)addressDictionary completionHandler:(CLGeocodeCompletionHandler)completionHandler; 8 - (void)geocodeAddressString:(NSString *)addressString completionHandler:(CLGeocodeCompletionHandler)completionHandler; 9 - (void)geocodeAddressString:(NSString *)addressString inRegion:(CLRegion *)region completionHandler:(CLGeocodeCompletionHandler)completionHandler;10 - (void)cancelGeocode;

一共就这么几个方法,使用的时候,记着把device升级到ios5版

下面发个截图说下使用发放吧,非常简单,ios都更新到5了,咱们也应该科学的跟随一下,当然,不想用CLGeocoder而还坚持使用MKReverseGeocoder的也完全没问题

模拟器中无法取得placemark,需要真机测试。

转载于:https://www.cnblogs.com/ubersexual/p/3277942.html

你可能感兴趣的文章
ArcGIS Server 10.1 错误 service failed to start,
查看>>
MYSQL中case when then else end 用法
查看>>
C语言::模拟实现strlen函数
查看>>
利用NABCD模型进行竞争性需求分析
查看>>
Vue的ref,父节点,获取子节点数据的一个手段
查看>>
好文推荐系列--------(1)bower---管理你的客户端依赖
查看>>
一些常用的基本知识收录
查看>>
1044 火星数字
查看>>
数据劫持,订阅者模式,双向绑定
查看>>
关于使用别人方法的效率问题
查看>>
svn第一篇----入门指南
查看>>
按钮 是否可用 的控制
查看>>
隐马尔科夫模型(HMM) 举例讲解
查看>>
JedisUtils工具类模板
查看>>
NOIP2011题解
查看>>
[Python] 文科生零基础学编程系列二——数据类型、变量、常量的基础概念
查看>>
[唐胡璐]QTP技巧 - ALT+G快捷键
查看>>
P2746 [USACO5.3]校园网Network of Schools
查看>>
java中使用队列:java.util.Queue
查看>>
随笔记录(2019.7.16)
查看>>