With regards to a NSMutableArray, what is the difference between removeObject: and removeObjectIdenticalTo:
The wording in the API Reference seems very similar:
rO: Removes all occurrences in the receiver of a given object
rOIT: Removes all occurrences of a given object in the receiver
What am I missing?
UPDATE: I mean, how would I choose between them.