Skip to content

Instantly share code, notes, and snippets.

@inky
Created October 14, 2010 09:24
Show Gist options
  • Save inky/625929 to your computer and use it in GitHub Desktop.
Save inky/625929 to your computer and use it in GitHub Desktop.
Array & dict shortcuts (objective-c)
#define A(obj, objs...) [NSArray arrayWithObjects:obj, ## objs , nil]
#define D(val, key, vals...) [NSDictionary dictionaryWithObjectsAndKeys:val, key, ## vals , nil]
// from http://news.ycombinator.com/item?id=1789839
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment