lol .... Great! but for the sake of simplicity I will say.
Create a new SBJSON parser object
SBJSON *parser = [[SBJSON alloc] init];
Prepare a URL request to download statuses from Twitter
NSURLRequest *request = [NSURLRequest requestWithURL:
[NSURL URLWithString:@"http://twitter.com/statuses/public_timeline.json"]];
Run the request and return JSON as an NSData object p>
NSData *response = [NSURLConnection sendSynchronousRequest:request
returningResponse:nil error:nil];
JSON NSString NSDatap >
NSString *json_string = [[NSString alloc]
initWithData:response encoding:NSUTF8StringEncoding];
JSON
NSArray, JSON
NSArray *statuses = [parser objectWithString:json_string error:nil]
.