-
-
Save xor-gate/5975a645bd8772049866850a92259aac to your computer and use it in GitHub Desktop.
Downloading JSON file using NSURLSession.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Create a sample URL. | |
NSURL *url = [NSURL URLWithString:@"http://www.bbc.co.uk/tv/programmes/genres/drama/scifiandfantasy/schedules/upcoming.json"]; | |
// Create a download task. | |
NSURLSessionDataTask *task = [[NSURLSession sharedSession] dataTaskWithURL:url | |
completionHandler:^(NSData *data, | |
NSURLResponse *response, | |
NSError *error) | |
{ | |
if (!error) | |
{ | |
NSError *JSONError = nil; | |
NSDictionary *dictionary = [NSJSONSerialization JSONObjectWithData:data | |
options:0 | |
error:&JSONError]; | |
if (JSONError) | |
{ | |
NSLog(@"Serialization error: %@", JSONError.localizedDescription); | |
} | |
else | |
{ | |
NSLog(@"Response: %@", dictionary); | |
} | |
} | |
else | |
{ | |
NSLog(@"Error: %@", error.localizedDescription); | |
} | |
}]; | |
// Start the task. | |
[task resume]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment