0
votes
2answers
97 views

NSNumber has unsignedIntValue and unsignedLongValue. I thought they were the same?

I thought unsigned int meant unsigned long int (32 bit) by default. Likewise, I thought unsigned long meant unsigned long int by default (32 bit). Why the two selectors on NSNumber (unsignedIntValue ...
2
votes
3answers
1k views

NSNumber arithmetic

I want to perform some simple arithmetic on NSNumbers and preserve the type. Is this possible? For example: - (NSNumber *)add:(NSNumber *)firstNumber to:(NSNumber *)secondNumber; Is my method ...
2
votes
2answers
180 views

Can I achieve multiple dispatch between int and NSNumber?

I'm writing some library code, and users of the library sometimes have different opinions about which methods should use int and when to use NSNumber. I would like some way to set up a method so that ...
3
votes
1answer
1k views

argument isKindOfClass: [NSNumber class] - sane way to check this?

So I was playing with something where the class type of the arg is unknown until runtime. like this: - (NSNumber *)doWhatever:(id)arg { // this ALWAYS FAILS if ([arg isKindOfClass:[NSNumber ...
1
vote
4answers
2k views

Store NSNumber in a long double type

I have a number stored in an NSNumber which I would like to put into a long double, like so: NSNumberFormatter * f = [[NSNumberFormatter alloc] init]; [f ...