Skip to content

Instantly share code, notes, and snippets.

@jakeheis
Last active December 17, 2015 18:39
Show Gist options
  • Save jakeheis/5654598 to your computer and use it in GitHub Desktop.
Save jakeheis/5654598 to your computer and use it in GitHub Desktop.
Objective-C "unless"
#define unless(arg) if (!(arg))
-(NSString *)awesomeMethod {
unless(false) {
return @"Awesome";
} else {
return @"Uh-oh";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment