Skip to content

Instantly share code, notes, and snippets.

@lukeredpath
Created February 20, 2012 18:14
Show Gist options
  • Save lukeredpath/1870425 to your computer and use it in GitHub Desktop.
Save lukeredpath/1870425 to your computer and use it in GitHub Desktop.
MAYBE_NULL
#define MAYBE_NULL(value) (value == [NSNull null] ? nil : value)
self.myProperty = MAYBE_NULL([dict objectForKey:@"might_be_null"]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment