gpt4 book ai didi

ios - 如何从 CLGeocoder 返回值?

转载 作者:行者123 更新时间:2023-11-30 11:37:06 26 4
gpt4 key购买 nike

我正在开发天气应用程序作为培训,需要将位置转换为城市。所以我像这样使用 CLGeocoder:

 func updateWeatherData(json: JSON?) {

if let json = json {
weatherData.temperature = fahrenheitToCelcius(json["currently"]["temperature"].doubleValue)
weatherData.weatherIconName = json["currently"]["icon"].stringValue

let location = CLLocation(latitude: json["latitude"].doubleValue, longitude: json["longitude"].doubleValue)
CLGeocoder().reverseGeocodeLocation(location) { (placemark, error) in

if let city = placemark {
self.weatherData.city = city.last?.locality
} else if let error = error {
print(error)
}
}
updateUIWithWeatherData()
}

}
//MARK: - UI Updates

func updateUIWithWeatherData() {

cityLabel.text = weatherData.city
temperatureLabel.text = "\(weatherData.temperature)°"
weatherIcon.image = UIImage(named: weatherData.weatherIconName!)

}

此代码向weatherData.city返回nil。但是当我在闭包内放置断点时,一切正常。我错过了什么?

最佳答案

如果我正确理解您的问题,您需要在地理编码完成后更新您的用户界面。就像下面这样:

func updateWeatherData(json: JSON?) {

if let json = json {
weatherData.temperature = fahrenheitToCelcius(json["currently"]["temperature"].doubleValue)
weatherData.weatherIconName = json["currently"]["icon"].stringValue

let location = CLLocation(latitude: json["latitude"].doubleValue, longitude: json["longitude"].doubleValue)
CLGeocoder().reverseGeocodeLocation(location) { (placemark, error) in

if let city = placemark {
self.weatherData.city = city.last?.locality
} else if let error = error {
print(error)
}
self.updateUIWithWeatherData()
}
}

}

这些操作的顺序是为了异步完成地理编码,并且可能会晚于其后调用的代码发生。请注意可以但不需要。

您还应该阅读此方法有关线程的文档。 UI 必须在主线程上更新,因此除非文档指定调用将在主线程上完成,否则最好强制执行它:

CLGeocoder().reverseGeocodeLocation(location) { (placemark, error) in    
if let city = placemark {
self.weatherData.city = city.last?.locality
} else if let error = error {
print(error)
}
DispatchQueue.main.async {
self.updateUIWithWeatherData()
}
}

关于ios - 如何从 CLGeocoder 返回值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49626506/

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