Swift + AFNetworking获取天气信息

前端之家收集整理的这篇文章主要介绍了Swift + AFNetworking获取天气信息前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

课程地址 http://www.imooc.com/video/2475

如何实现

xcode8.3,swift3.0+ 环境需要做如下步骤才可以看到信息

self.updateWeatherInfo(latitude: location.coordinate.latitude,longitude: location.coordinate.longitude,appid: "4f4be8fe7031dddd5dec789e01c1b3ac")
  • updateWeatherInfo 具体实现
func updateWeatherInfo(latitude: CLLocationDegrees,longitude: CLLocationDegrees,appid: String) {

        let manager = AFHTTPSessionManager()
        let url = "http://api.openweathermap.org/data/2.5/weather"

        let params = ["lat": latitude,"lon": longitude,"appid": appid,"cnt": 0] as [String : Any]

        manager.get(url,parameters: params,progress: {(progress: Progress) in print("progress")},success: {(operation:URLSessionDataTask!,responSEObject: Any!) 
        in print("JSON: " + (responSEObject as AnyObject).description)},failure: {(operation:URLSessionDataTask?,error: Error!)  
        in print("Error: " + error.localizedDescription)})

    }
原文链接:https://www.f2er.com/swift/321566.html

猜你在找的Swift相关文章