如何在 iPhone 中使用 Mapkit 获取位置名称?
我是 iPhone 开发新手,现在我面临着开发一个应用程序的问题,当用户在屏幕上点击两秒时我需要获取坐标(纬度,长)并获取用户位置名称,我得到了坐标,但我我无法获取用户点击的用户位置名称。请帮我解决这个问题吗?
I am new in iphone development and right now i am facing problem for developing developing an application in which i need to get coordinate(lat, long) when user tapped on screen for two second and also get user location name,i got coordinate but i am unable to get user location name on which user tapped. so kindly help me on that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 iOS 5+ 中,使用
CLGeocoder< /code>
及其
reverseGeocodeLocation:completionHandler:
方法。就您而言,您可能对
areasOfInterest
属性最感兴趣。例子:
In iOS 5+ use
CLGeocoder
and itsreverseGeocodeLocation:completionHandler:
method.In your case, you're probably most interested in the
areasOfInterest
property.Example: