Swift2.0中Json数据的解析教程

前端之家收集整理的这篇文章主要介绍了Swift2.0中Json数据的解析教程前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

(转载自:http://blog.csdn.net/ios_of_swift/article/details/47280483)


1.在swift1.0时代,解析的前几句可能是这样的

[plain] view plain copy
  1. <spanstyle="white-space:pre"></span>leturl=NSURL(string:"Server")
  2. letdata=NSData(contentsOfURL:url)
  3. letobject=NSJSONSerialization.JSONObjectWithData(data,options:NSJSONReadingOptions.MutableContainers,error:nil)
或者是这样的

copy

    <spanstyle="white-space:pre"></span>varurl=NSURL(string:"Server")
  1. <spanstyle="white-space:pre"></span>vardata=NSData.dataWithContentsOfURL(url,options:NSDataReadingOptions.DataReadingUncached,error:nil)
  2. <spanstyle="white-space:pre"></span>varjson:AnyObject=NSJSONSerialization.JSONObjectWithData(data,options:NSJSONReadingOptions.AllowFragments,85); font-family:'microsoft yahei'; font-size:15px; line-height:35px">但是一旦你用在Swift2.0里面就......Extra argument ’error‘ in call了

    然后我就必应了一下

    发现Swift2.0的拋错误的正确姿势是这样的

    copy

    do{
  1. letobject=tryNSJSONSerialization.JSONObjectWithData(data!,options:NSJSONReadingOptions.MutableContainers)
  2. }
  3. catch{
  4. print(error)
  5. }

顿时hehe了

所以说应该这样写喽

copy

    letdata=NSData(contentsOfURL:url!)
  1. do{
  2. 原来如此,这里Swift2.0的抛错误方式再也不是error:nil了

    而是do{

    try ...

    }

    catch{

    }

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

    猜你在找的Swift相关文章