Я довольно новичок в этом - я пытаюсь сравнить строку NSStringWithFormat с некоторым текстом. Он отлично работает с stringWithString. Я не могу понять, почему это не работает с stringWithFormat?
Большое спасибо за любую помощь, которую может предложить каждый!
NSString *theQuestion = [NSString stringWithFormat:@"The same thing"];
if (theQuestion == @"The same thing"){
NSLog(@"stringWithFormat is the same as the given text");
}else{
NSLog(@"stringWithFormat is NOT the same as the given text");
NSLog(@"but theQuestion is:\"%@\"", theQuestion);
}