0
点赞
收藏
分享

微信扫一扫

[IOS] 用json-framework解析json数据

Aliven888 2023-03-22 阅读 76


下载json-framework
[url]https://github.com/stig/json-framework/[/url]

//http访问接口返回json
NSMutableURLRequest* request = [[NSMutableURLRequest alloc] init];
[request setURL:[NSURL URLWithString:@"http://iaiai.iteye.com"]];
[request setHTTPMethod:method];

NSHTTPURLResponse* urlResponse = nil;
NSError *error = [[NSError alloc] init];
NSData *responseData = [NSURLConnection sendSynchronousRequest:request returningResponse:&urlResponse error:&error];
NSMutableString *result = [[NSMutableString alloc] initWithData:responseData encoding:NSUTF8StringEncoding];

//把json转成对象
//NSDictionary* json = [result JSONValue];
NSMutableArray* json = [result JSONValue];
NSArray* list = [NSArray alloc];
for (NSDictionary *dictionary in json){//对NSMutableArray进行遍历
NSLog(@"%@,%@",[dictionary objectForKey:@"appType"],[dictionary objectForKey:@"copyright"]);
}

举报

相关推荐

0 条评论