Skip to content

Instantly share code, notes, and snippets.

@thoretton-edwin
Last active August 29, 2015 13:56
Show Gist options
  • Save thoretton-edwin/9016181 to your computer and use it in GitHub Desktop.
Save thoretton-edwin/9016181 to your computer and use it in GitHub Desktop.
iOS NSDictionary allocation and init
NSDictionary* dico=[[NSDictionary alloc]init];
dico = [NSDictionary
dictionaryWithObjects:@[@"http://www.google.com/favicon.ico",@"google",@"http://www.google.com"]
forKeys:@[@"favicon",@"nom",@"url"]];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment