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)})

    }
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值