Skip to content

Instantly share code, notes, and snippets.

@flexaddicted
Created February 22, 2015 13:28
Show Gist options
  • Save flexaddicted/96fddee7cc6c440cdbf0 to your computer and use it in GitHub Desktop.
Save flexaddicted/96fddee7cc6c440cdbf0 to your computer and use it in GitHub Desktop.
- (void)downloadData {
NSURL *url = [NSURL URLWithString:@"someurlhere"];
NetworkFetcher *networkFetcher = [[NetworkFetcher alloc] initWithURL:url];
[networkFetcher startWithCompletionHandler:^(NSData *data){
NSLog(@"Request URL %@ finished", networkFetcher.url);
_fetchedData = data;
}];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment