我有以下编码,我确保如果条件为 TRUE,但我无法进入它。我通过使用 NSLog 在 if 语句之前和之后写入值和长度来证明这一点,都等于“测试”和长度 = 4,任何人都可以解决我的问题吗?
请看下面的链接,这是我的屏幕截图,请帮助,谢谢!!!!
http://postimage.org/image/rvtxcq1g1/
NSLog(@"Before value=%@, lenght=%i", txtMaster.text, [txtMaster.text length]);
if (txtMaster.text == @"test")
{
NSLog(@"%@\n", @"Success");
}
NSLog(@"After value=%@, lenght=%i", txtMaster.text, [txtMaster.text length]);