Skip to content

Instantly share code, notes, and snippets.

@samvermette
Created December 16, 2011 15:49
Show Gist options
  • Save samvermette/1486549 to your computer and use it in GitHub Desktop.
Save samvermette/1486549 to your computer and use it in GitHub Desktop.
SVHTTPRequest
[SVHTTPRequest GET:@"http://github.com/api/v2/json/repos/show/samvermette/SVHTTPRequest"
parameters:nil
completion:^(id response, NSError *error) {
NSNumber *watchers = [[response valueForKey:@"repository"] valueForKey:@"watchers"];
NSLog(@"SVHTTPRequest has %@ watchers", watchers);
}];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment