JSONKit使用相当简单。

将JSONKit.h和JSONKit.m拖到项目中。下载地址:https://github.com/johnezang/JSONKit/

下面代码:

    //string to dictionary
    NSString *resultStr = @"{\"name\": \"admin\",\"list\": [\"one\",\"two\",\"three\"]}";
    NSData* jsonData = [resultStr dataUsingEncoding:NSUTF8StringEncoding];
    NSDictionary *resultDict = [jsonData objectFromJSONData];
    
    NSLog(@"name is :%@",[resultDict objectForKey:@"name"]);
    NSArray *list = [resultDict objectForKey:@"list"];
    for (NSString *str in list) {
        NSLog(@"list res:%@",str);
    }
   
    //dicttionary to string
    NSString *jsonStr = [resultDict JSONString];
    NSLog(@"temp is :%@",jsonStr);


Logo

旨在为数千万中国开发者提供一个无缝且高效的云端环境,以支持学习、使用和贡献开源项目。

更多推荐