NSString *colorArray = @" [ { \"color\" : \" Red \" } , { \"color\" : \" Blue \" } , { \"color\" : \" Green \" } , { \"color\" : \" Gray \" } ] " ;
NSArray *Json = [ NSJSONSerialization JSONObjectWithData : [ colorArray dataUsingEncoding:NSUTF8StringEncoding ]
options: NSJSONReadingMutableContainers
error : NULL ] ;
NSLog ( @ " Json = % @ " , Json ) ;
这样就解析出来了。
网友评论