Skip to content

Instantly share code, notes, and snippets.

@joethephish
Created June 29, 2013 18:02
Show Gist options
  • Save joethephish/5892073 to your computer and use it in GitHub Desktop.
Save joethephish/5892073 to your computer and use it in GitHub Desktop.
The dangers of using [NSArray count] in if statements! (because count is an NSUInteger)
NSArray *array = @[@"a", @"b"];
if( array.count - 3 >= 5 ) {
NSLog(@"Big!");
} else {
NSLog(@"Small!");
}
// --> Big!
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment