下载json-framework
[url]https://github.com/stig/json-framework/[/url]
[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"]);
}