Skip to content

Instantly share code, notes, and snippets.

@alikaragoz
Created February 4, 2015 10:34
Show Gist options
  • Save alikaragoz/c627c884dc2c9f549396 to your computer and use it in GitHub Desktop.
Save alikaragoz/c627c884dc2c9f549396 to your computer and use it in GitHub Desktop.
Clever assertions
#define AssertOr(condition, action) { \
BOOL evaluatedCondition = !!(condition); \
if (!evaluatedCondition) { \
NSAssert(evaluatedCondition, @#condition); \
action \
} \
} \
#define AssertOrReturnNil(condition) AssertOr(condition, return nil;)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment