Skip to content

Instantly share code, notes, and snippets.

@flexaddicted
Created February 22, 2015 13:29
Show Gist options
  • Select an option

  • Save flexaddicted/92a1a277857b6cd092da to your computer and use it in GitHub Desktop.

Select an option

Save flexaddicted/92a1a277857b6cd092da to your computer and use it in GitHub Desktop.
// how to use NetworkRequest class
NSURL *urlRequest = [NSURL URLWithString:@"someurlhere"];
NetworkRequest *request = [[NetworkRequest alloc] initWithURL:urlRequest];
[request performWithCompletionHandler:^(NSData *data) {
NSLog(@"Hello world!!!");
}];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment