使用 MKReverseGeocoder 检索地址

发布于 2024-11-28 13:29:45 字数 479 浏览 3 评论 0原文

我正在尝试使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

酒儿 2024-12-05 13:29:45

同样

  - (void)reverseGeocoder:(MKReverseGeocoder *)geocoder didFindPlacemark:(MKPlacemark *)placemark

   {
   Nsstring*subLocalityStr= placemark.subLocality;
   Nsstring*subAdministrativeAreaStr= placemark.subAdministrativeArea;

   }

,您可以使用点表示法,它将给出可用方法的列表,您可以从中选择您想要的..

In

  - (void)reverseGeocoder:(MKReverseGeocoder *)geocoder didFindPlacemark:(MKPlacemark *)placemark

   {
   Nsstring*subLocalityStr= placemark.subLocality;
   Nsstring*subAdministrativeAreaStr= placemark.subAdministrativeArea;

   }

similarly you can get using dot notation which will give list of available methods from that you can select what you want ..

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文