Skip to content

Instantly share code, notes, and snippets.

@Fogh
Last active December 30, 2015 03:19
Show Gist options
  • Save Fogh/7768936 to your computer and use it in GitHub Desktop.
Save Fogh/7768936 to your computer and use it in GitHub Desktop.
CVRAPI.dk example
- (NSString *)getCompanyName
{
NSURL *url = [NSURL URLWithString:@"http://cvrapi.dk/10150817"];
NSData *data = [NSData dataWithContentsOfURL:url];
NSError *error;
NSDictionary *response = [NSJSONSerialization JSONObjectWithData:data options:kNilOptions error:&error];
NSString *companyName = [response objectForKey:@"navn"];
return companyName;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment