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