Why is my comparing if statement not working? - Stack Overflow most recent 30 from stackoverflow.com 2010-03-19T22:49:02Z http://stackoverflow.com/feeds/question/484709 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/484709/why-is-my-comparing-if-statement-not-working 2 Why is my comparing if statement not working? xaddict http://stackoverflow.com/users/59159 2009-01-27T18:54:42Z 2009-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#484728 17 Answer by Paul Tomblin for Why is my comparing if statement not working? Paul Tomblin http://stackoverflow.com/users/3333 2009-01-27T18:59:06Z 2009-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#485152 8 Answer by Barry Wark for Why is my comparing if statement not working? Barry Wark http://stackoverflow.com/users/2140 2009-01-27T20:44:08Z 2009-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#486324 2 Answer by dreamlax for Why is my comparing if statement not working? dreamlax http://stackoverflow.com/users/10320 2009-01-28T02:54:04Z 2009-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>