Is there a better way to compare a NSNumber with a fixed value, it just feels a little clunky.
if([myNumber isEqualToNumber:[NSNumber numberWithInt:0]]) NSLog(@"Zero");
I do know I can use -compare but it pretty much looks the same ...
gary
|
Is there a better way to compare a NSNumber with a fixed value, it just feels a little clunky.
I do know I can use -compare but it pretty much looks the same ... gary |
|||||
|
|
How about |
||||
|
For this reason, your approach is actually superior if you don't know the exact type of
If comparing to larger fixed numbers or floats, you'll have to go this route anyway. Also, recent versions of Xcode will properly warn you if you try to create a NSNumber with the wrong type, which can help spot problems early:
|
|||
|