我正在制作天气应用,并且试图从儿子文件中获取日期和天气。我成功进入“每日”内部,但无法进入“每日”内部的“数据”内部。这是代码:
func downloadForecastWeather(completed: @escaping DownloadComplete) {
Alamofire.request(FORECAST_API_URL).responseJSON { (response) in
let result = response.result
if let dictionary = result.value as? Dictionary<String, AnyObject> {
if let list = dictionary["list"] as? [Dictionary<String, AnyObject>] {
for item in list {
let forecast = ForecastWeather(weatherDict: item)
self.forecastArray.append(forecast)
}
self.forecastArray.remove(at: 0)
self.tableView.reloadData()
}
}
completed()
}
}
这是我的ForecastWeather班:
init(weatherDict: Dictionary<String, AnyObject>) {
if let temp = weatherDict["temperatureMin"] as? Double {
let rawValue = (temp - 273.15).rounded(toPlaces: 0)
self._temp = rawValue
}
if let date = weatherDict["time"] as? Double {
let rawDate = Date(timeIntervalSince1970: date)
let dateFormatter = DateFormatter()
dateFormatter.dateStyle = .medium
self._date = "\(rawDate.dayOfTheWeek())"
}
}
这是json的链接: https://api.darksky.net/forecast/132d3013b6e07bdf66159c1f5a90f76c/37.8267,-122.4233 因此,基本上我的问题是如何从“每日”内部的“数据”中获取数据并在for方法中使用它。
答案 0 :(得分:1)
尝试与SwiftyJSON
一起使用,可以很容易地将其集成到您的代码中,您要做的就是在downloadForecastWeather
函数中添加以下代码。
func downloadForecastWeather(completed: @escaping DownloadComplete) {
Alamofire.request(FORECAST_API_URL).responseJSON { (response) in
let jsondata = JSON(response.result.value!)
if let myData = jsondata["list"]["daily"]["data"].arrayObject { // here you can access your data inside daily
for data in myData {
let forecast = ForecastWeather(weatherDict: data)
self.forecastArray.append(forecast)
}
self.forecastArray.remove(at: 0)
self.tableView.reloadData()
}
completed()
}
}
有关更多详细信息,请参阅此Documentation。
我希望它对您有用。
:D
答案 1 :(得分:0)
如果您使用的是Swift 4,则应该能够在ForecastWeather模型中采用Codable协议。
这将使您可以执行以下操作(不完全是这样):
let weather = try JSONDecoder().decode(Weather.self, from: jsonData!)
对于合理的深度阅读,我建议从Apple Docs
开始如果您想阅读更多,我发现这本书(收费)很棒。 Flight School Guide to Swift Codable