String Comparison in the iPhone SDK
November 30, 2009 by Josh Highland
Filed under iPhone app dev, tutorials

The wrong way to do string comparisons in the iPhone SDK
if(myTitle == @"HELLO")
The right way
if([myTilte isEqualToString:@"HELLO"])
the living internet
November 30, 2009 by Josh Highland
Filed under iPhone app dev, tutorials

The wrong way to do string comparisons in the iPhone SDK
if(myTitle == @"HELLO")
The right way
if([myTilte isEqualToString:@"HELLO"])