Skip to content

Instantly share code, notes, and snippets.

@zeroelink
Created August 18, 2012 22:11
Show Gist options
  • Save zeroelink/3390125 to your computer and use it in GitHub Desktop.
Save zeroelink/3390125 to your computer and use it in GitHub Desktop.
Objective-C NSDictionary Before
// Old way
NSDictionary *oldDict = [NSDictionary dictionaryWithObjectsAndKeys: value1, key1, value2, key2, nil];
// New way
NSDictionary *newDict = @{ key1: value1, key2: value2 };
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment