iPhone SDK - MapKit CoreLocation - 根据纬度和经度创建街道地址
我正在构建的应用程序遇到问题。
我可以检索用户的纬度和经度,但是我需要将这些值转换为 NSString
街道地址。 IE。 “悉尼公园街 123 号”。
知道如何从坐标创建街道地址吗?
I have a problem in an app I am building.
I can retrieve the users latitude and longitude, however I need to convert those values into an NSString
street address. ie. "123 Park Street, Sydney".
Any idea as to how I can create a street address from the coordinates?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
查看 MKReverseGeocoder 的文档。
编辑:如文档,
MKReverseGeocoder
在 iOS 5.0 中已弃用。请改用CLGeocoder
类 (此处的文档,此处为示例代码)。Look at the documentation for
MKReverseGeocoder
.Edit: As stated in the documentation,
MKReverseGeocoder
is deprecated in iOS 5.0. Use theCLGeocoder
class instead (documentation here, example code here).