Download it now: JsonLoader.zip
It requires TouchJson, which you can get here: https://github.com/TouchCode/TouchJSON
Here's some example code:
#import "JsonLoader/JsonLoader.h"
@interface myClass{
}
@property (nonatomic, retain) JsonLoader *jsonLoader;
@end
...
@implementation myClass
- (id)init {
if(self = [super init]) {
NSURLRequest *request = [NSURLRequest requestWithURL:[NSURL URLWithString:@"http://api.crunchbase.com/v/1/company/google.js"]];
self.jsonLoader = [[[JsonLoader alloc] initWithRequest:request delegate:self] autorelease];
}
returns self;
}
- (void)jsonLoadedSuccessfully:(JsonLoader*)loader json:(id*)json {
NSLog(@"loaded json:%@", json};
}
- (void)dealloc {
self.jsonLoader = nil;
[super dealloc];
}
Edit: Updated it to handle Arrays and other Json types beyond just dictionaries


