I need an efficient data structure to hold onto identifiers without the need for a value in the dictionary. Would it work to hold just an NSNull as the value for each key or is there a more efficient data structure for fast lookup of keys?
I need an efficient data structure to hold onto identifiers without the need for
Share
See
NSSetorNSMutableSet, it is essentially anNSDictionarywithout values.