iPhone - 将characterAtIndex返回的字符与另一个硬编码字符进行比较

时间:2011-03-09 20:44:55

标签: iphone comparison character hardcode

我想将characterAtIndex返回的字符与某些“硬”字符(如@“”或@“P”)进行比较。这可能看起来很愚蠢,但我找不到这样做的方法......

1 个答案:

答案 0 :(得分:10)

使用单引号:

if ([@"test" characterAtIndex:1] == 'e')