使用 MKReverseGeocoder 检索地址
我正在尝试使用 MKReverseGeocoder 检索用户地址。它工作正常,但我没有得到正确格式的地址。
代码:
- (void)reverseGeocoder:(MKReverseGeocoder *)geocoder didFindPlacemark:(MKPlacemark *)placemark{
NSLog(@"Geocoder completed");
NSLog(@"%@",[placemark.addressDictionary objectForKey:@"FormattedAddressLines"]);
}
输出:
(
"Almungev\U00e4gen 33",
"Tempe, AZ 85281",
USA
)
为什么我在街道名称中出现这些奇怪的字符?如何将其更改为可读格式?
如有帮助,将不胜感激。
I am trying to retrieve the user address using MKReverseGeocoder. It works fine, but I am not getting the address in the proper format.
code:
- (void)reverseGeocoder:(MKReverseGeocoder *)geocoder didFindPlacemark:(MKPlacemark *)placemark{
NSLog(@"Geocoder completed");
NSLog(@"%@",[placemark.addressDictionary objectForKey:@"FormattedAddressLines"]);
}
Output:
(
"Almungev\U00e4gen 33",
"Tempe, AZ 85281",
USA
)
Why am i getting those strange characters in street name ? How can i change it to a readable format?
Help would be appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
同样
,您可以使用点表示法,它将给出可用方法的列表,您可以从中选择您想要的..
In
similarly you can get using dot notation which will give list of available methods from that you can select what you want ..