码迷,mamicode.com
首页 > 其他好文 > 详细

根据经纬度获取天气信息

时间:2014-09-30 22:56:30      阅读:282      评论:0      收藏:0      [点我收藏+]

标签:des   http   io   ar   sp   c   on   r   bs   

        let manager = AFHTTPRequestOperationManager()

        let url = "http://api.openweathermap.org/data/2.5/weather"

        let params = ["lat":latitude, "lon":longitude, "cnt": 0]

        manager.GET(url, parameters: params, success: { (operation: AFHTTPRequestOperation!, respinseObejct: AnyObject!) in

            println("JSON: " + respinseObejct.description!)

            }, failure: {(operation: AFHTTPRequestOperation!, error: NSError!) in

                println("Error" + error.localizedDescription)

                })

根据经纬度获取天气信息

标签:des   http   io   ar   sp   c   on   r   bs   

原文地址:http://www.cnblogs.com/scaptain/p/4002672.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!