Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在我的应用程序中,我使用从当前位置获取城市名称MKReverseGeocoder
MKReverseGeocoder
我也得到国家代码,但我也想要城市代码。
例如,如果我去纽约市,而不是我想去纽约。所以我可以展示纽约,纽约
任何人都可以帮助我如何获得或任何链接?
提前致谢!
NY 不是“城市代码”,它是纽约州的缩写。administrativeArea就MKPlacemark/而言,美国的州是一个CLPlacemark。地理编码器只提供一个规范的城市名称——如果你想要它的缩写,你就得去别处找了。
administrativeArea
MKPlacemark
CLPlacemark
另请注意,在 iOS 5.0 及更高版本上,您应该使用CLGeocoder. 而不是已弃用的MKReverseGeocoder.
CLGeocoder