码迷,mamicode.com
首页 > 编程语言 > 详细

swift 官方获取JSON 数据方法

时间:2014-11-19 15:54:49      阅读:233      评论:0      收藏:0      [点我收藏+]

标签:http   io   ar   sp   for   数据   on   bs   html   

 var url = NSURL(string: "http://www.weather.com.cn/data/sk/101120501.html")

        var data = NSData(contentsOfURL: url!, options: NSDataReadingOptions.DataReadingUncached, error: nil)

        var json : AnyObject! = NSJSONSerialization.JSONObjectWithData(data!, options: NSJSONReadingOptions(), error: nil)

        var weatherinfo: AnyObject? = json.objectForKey("weatherinfo")

        var city: AnyObject? = weatherinfo?.objectForKey("city")

        

        //  println(city)

 

swift 官方获取JSON 数据方法

标签:http   io   ar   sp   for   数据   on   bs   html   

原文地址:http://www.cnblogs.com/already/p/4108323.html

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