问:func currentWeatherFromJSON(jsonDictionary: [String: AnyObject]?) -> CurrentWeather { if let CurrentWeatherDictionary = jsonDictionary?["currently"] as? [String: AnyObject] { return CurrentWeather(weatherDictionary: CurrentWeatherDictionary) } else { print("JSON 字典为 'currently' 键返回 nil。") return nil