Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

If you can't get an object with objectAtIndex: from an NSSet then how do you retrieve objects?

share|improve this question

4 Answers

up vote 43 down vote accepted

There are several use cases for a set. You could enumerate through (e.g. with enumerateObjectsUsingBlock or NSFastEnumeration), call containsObject to test for membership, use anyObject to get a member (not random), or convert it to an array (in no particular order) with allObjects.

A set is appropriate when you don't want duplicates, don't care about order, and want fast membership testing.

share|improve this answer
1  
I think you're missing a link to developer.apple.com/library/ios/documentation/Cocoa/Reference/…. – Kris Markel Sep 30 '10 at 0:17
@Robot, thanks, fixed. – Matthew Flaschen Sep 30 '10 at 0:18
2  
You can also look up a known object by a potential duplicate by sending the set a member: message. If it returns nil, the set does not contain an object equal to the one you passed; if it returns an object pointer, then the pointer it returns is to the object already in the set. The objects in the set must implement hash and isEqual: for this to be useful. – Peter Hosey Sep 30 '10 at 4:44

NSSet doesn't have a method objectAtIndex:

Try calling allObjects which returns an NSArray of all the objects.

share|improve this answer
do you have any idea if the array returned is ordered? in other words, if im adding objects to the set using "setByAddingObject", and i used "allObjects", are? the elements in the array ordered in the order I added the objects? – Shady Jul 3 '12 at 7:40
just sort the resulting array with an NSSortPredicate and you'll be fine – Jason Mar 8 at 5:00

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:

@property NSUInteger objectID;

then you'd implement isEqual: as

- (BOOL)isEqual:(id)object
{
  return (self.objectID == [object objectID]);
}

and you could implement hash:

- (NSUInteger)hash
{
 return self.objectID;  // to be honest, I just do what Apple tells me to here
                       // because I've forgotten how Sets are implemented under the hood
}

Then, you can get an object with that ID (as well as check for whether it's in the NSSet) with:

MyObject *testObject = [[MyObject alloc] init];
testObject.objectID = 5; // for example.  

// I presume your object has more properties which you don't need to set here 
// because it's objectID that defines uniqueness (see isEqual: above)

MyObject *existingObject = [mySet member: testObject];

// now you've either got it or existingObject is nil

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.

share|improve this answer

NSArray *myArray = [myNSSet allObjects];

MyObject *object = [myArray ojectAtIndex:(NSUInteger *)]

replace NSUInteger with the index of your desired object.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.