gpt4 book ai didi

iOS - MKMapKit,在注释中显示用户位置的地址

转载 作者:塔克拉玛干 更新时间:2023-11-02 09:20:11 26 4
gpt4 key购买 nike

默认情况下,我们可以在 map View 上显示用户的位置。在点击注释图钉时,它将显示“当前位置”。但我想将用户的地址显示为街道、城市和国家。我如何使用 CLGeoCoder 类来做到这一点?

最佳答案

做这样的事情:

CLGeocoder *gc = [[[CLGeocoder alloc] init] autorelease];
[gc reverseGeocodeLocation:locationObject completionHandler:^(NSArray *placemark, NSError *error) {
CLPlacemark *pm = [placemark objectAtIndex:0];
NSDictionary *address = pm.addressDictionary;
// do something with the address, see keys in the remark below
}];

相关文档在这里: http://developer.apple.com/library/ios/documentation/CoreLocation/Reference/CLPlacemark_class/Reference/Reference.html#//apple_ref/occ/instp/CLPlacemark/addressDictionary

关于iOS - MKMapKit,在注释中显示用户位置的地址,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8930916/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com