美文网首页
字符串解析

字符串解析

作者: 小猪圣骑士 | 来源:发表于2015-12-25 19:52 被阅读51次

    NSString *colorArray = @" [ { \"color\" : \" Red \" } , { \"color\" : \" Blue \" } , { \"color\" : \" Green \" } , { \"color\" : \" Gray \" } ] " ;

    NSArray *Json = [ NSJSONSerialization JSONObjectWithData : [ colorArray dataUsingEncoding:NSUTF8StringEncoding ]

                                                                                  options: NSJSONReadingMutableContainers

                                                                                  error : NULL ] ;

    NSLog ( @ " Json = % @ " , Json ) ;

    这样就解析出来了。

    相关文章

      网友评论

          本文标题:字符串解析

          本文链接:https://www.haomeiwen.com/subject/dvxbhttx.html