If you can't get an object with objectAtIndex: from an NSSet then how do you retrieve objects?
|
There are several use cases for a set. You could enumerate through (e.g. with A set is appropriate when you don't want duplicates, don't care about order, and want fast membership testing. |
|||||||||||
|
|
NSSet doesn't have a method objectAtIndex: Try calling allObjects which returns an NSArray of all the objects. |
|||||
|
|
NSSet uses the method isEqual: (which the objects you put into that set must override, in addition, the hash method) to determine if an object is inside of it. So, for example if you have a data model that defines its uniqueness by an id value (say the property is:
then you'd implement isEqual: as
and you could implement hash:
Then, you can get an object with that ID (as well as check for whether it's in the NSSet) with:
But yeah, the only way to get something out of a NSSet is by considering that which defines its uniqueness in the first place. I haven't tested what's faster, but I avoid using enumeration because that might be linear whereas using the member: method would be much faster. That's one of the reasons to prefer the use of NSSet instead of NSArray. |
|||
|
|
|
replace NSUInteger with the index of your desired object. |
|||
|
|