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

What is the difference between isEqual: and isEqualToString:?

Why are classes adding isEqualTo* methods (isEqualToArray for NSArray, isEqualToData for NSData, ...) instead of just overriding isEqual: ?

share|improve this question

3 Answers

up vote 51 down vote accepted

isEqual: compares a string to an object, and will return NO if the object is not a string. isEqualToString: is faster if you know both objects are strings, as the documentation states:

Special Considerations

When you know both objects are strings, this method is a faster way to check equality than isEqual:.

isEqualTo<Class> is used to provide specific checks for equality. For instance; isEqualToArray: checks that the arrays contain an equal number of objects, and that the objects at a given index return YES for the isEqual: test.

share|improve this answer

Also, for writing your own -isEqual: and -isEqualTo<Class>: methods, the convention is to allow nil arguments for -isEqual: and raise an exception for nil arguments to -isEqualTo<Class>:

share|improve this answer
I hadn't come across this before, any documentation that you know of? – Mike Abdullah Aug 19 '09 at 11:21
This doesn't seem to be true for isEqualToString, which just returns NO if you pass in nil. – Jaka Jančar Aug 21 '09 at 9:48
5  
Interesting, it's documented in the Object Comparison section of the <a href="developer.apple.com/documentation/Cocoa/Conceptual/… Fundamentals Guide</a> – Jonathan Dann Aug 23 '09 at 16:56

My guess is that it provides a slight performance enhancement, as isEqualToString: won't have to type-check what's passed in.

share|improve this answer
Your guess is probably true:) – Philip007 Jan 17 at 7:53

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.