views:

164

answers:

1

This may seem like a stupid question, but what message do i send to the NSSet class to determine how many times a particular control has been tapped?

+1  A: 

An NSSet is a container like an array, it has no inherent information about the content stored inside it, other than the actual content itself, what is inside the NSSet?

cobbal
I figured it out thanks to your help. I needed to use containsObject. Thanks!
RCIX