Skip to content

Instantly share code, notes, and snippets.

@rtalwarhike
rtalwarhike / objc-network-get.m
Created December 9, 2016 08:49
objective c network GET
-(void)get:(NSString *)url withCallback:(void (^)(NSError *, NSData* ))completionHandler {
NSMutableURLRequest *req = [NSMutableURLRequest requestWithURL:[NSURL URLWithString:url]];
req.HTTPMethod = @"GET";
NSURLSessionConfiguration *sessionConfig = [NSURLSessionConfiguration defaultSessionConfiguration];
sessionConfig.requestCachePolicy = NSURLRequestReloadIgnoringLocalAndRemoteCacheData;