I don't understand why I can't add many [NSNull null] to a NSMutableOrderedSet:
NSMutableOrderedSet *set = [[NSMutableOrderedSet alloc]init];
for(int i = 0; i < 10; i++)
{
[set addObject: [NSNull null]];
}
NSLog("SET COUNT : %d", set.count);
This Output :
SET COUNT : 1
And if I try it with a NSMutableArray it works just fine, I've read NSNull documentation (which is really short but didn't help) but it says:
"The NSNull class defines a singleton object used to represent null values in collection objects"
and NSMutableOrderedSet documentation and it says it's an
"[...] ordered collection of distinct objects"
So if it's a collection why isn't it working ?
Thank you very much

[NSNull null]returns asingletonobject, which means that there is only 1 version, and it is reused multiple times. – msgambel Nov 20 '12 at 20:32