Why is my comparing if statement not working? - Stack Overflow most recent 30 from stackoverflow.com2010-03-19T22:49:02Zhttp://stackoverflow.com/feeds/question/484709http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/484709/why-is-my-comparing-if-statement-not-working2Why is my comparing if statement not working?xaddicthttp://stackoverflow.com/users/591592009-01-27T18:54:42Z2009-01-28T13:54:54Z
<p>Why is the following code (in cocoa) not working?</p>
<pre><code>NSString *extension = [fileName pathExtension];
NSString *wantedExtension = @"mp3";
if(extension == wantedExtension){
//work
}
</code></pre>
<p>in Xcode this just runs without warnings or errors but doesn't do what I think it SHOULD do.</p>
http://stackoverflow.com/questions/484709/why-is-my-comparing-if-statement-not-working/484728#48472817Answer by Paul Tomblin for Why is my comparing if statement not working?Paul Tomblinhttp://stackoverflow.com/users/33332009-01-27T18:59:06Z2009-01-28T13:54:54Z<p>Shouldn't that be</p>
<pre><code>if ([extension isEqualToString:wantedExtension]) {
...
}
</code></pre>
<p>"==" compares the pointers. isEqual: and isEqualToString: compare the strings, although isEqualToString is better if you know both extension and wantedExtension are NSString (which you do in this case).</p>
<p>Actually, if you're an old C++ and Java programmer like me, you might be happier putting the one that is known not to be null, "wantedextension", first. In Objective C that is not necessary because "sending a message" (ie calling a method) to a nil returns 0 or false.</p>
<pre><code>if ([wantedExtension isEqualToString:extension]) {
...
}
</code></pre>
http://stackoverflow.com/questions/484709/why-is-my-comparing-if-statement-not-working/485152#4851528Answer by Barry Wark for Why is my comparing if statement not working?Barry Warkhttp://stackoverflow.com/users/21402009-01-27T20:44:08Z2009-01-27T20:44:08Z<p>Paul's answer is technically correct, but as stated in the NSString documentation, "When you know both objects are strings, this method [isEqualToString:] is a faster way to check equality than isEqual:." Thus, for your example code, the correct test is</p>
<pre><code>if([extension isEqualToString:wantedExtension]) {
...
}
</code></pre>
<p>If extension is <code>nil</code>, the result will be false, even if wantedExtension is non-<code>nil</code>, since messaging <code>nil</code> in Objective-C returns 0 for <code>BOOL</code> return-valued functions.</p>
http://stackoverflow.com/questions/484709/why-is-my-comparing-if-statement-not-working/486324#4863242Answer by dreamlax for Why is my comparing if statement not working?dreamlaxhttp://stackoverflow.com/users/103202009-01-28T02:54:04Z2009-01-28T02:54:04Z<p>Remember that in Objective-C there is no operator overloading. What the <code>==</code> is doing in this case is a perfectly legal and well-used usage, comparing two pointers. You have two pointers that will always point to two different objects, so the <code>==</code> operator will always be false.</p>