我正在使用geocodeAddressString:completionHandler:
。当我请求时,它会在字典中搜索所有内容。可以说我只想用我的字符串搜索州名(或者可能只是咖啡店地址)。
有什么提示我该怎么做吗?
let geocoder = CLGeocoder()
let address = "New "
geocoder.geocodeAddressString(address, in: region) { (placemarks, error) in
// I am only interested to get places for states "New York", not "New Coffee, California"
}