所以我试图找到一个与 NSArray 中的对象相同的 NSString
所以到目前为止我有这个
SPButton *currentBalloon = (SPButton *)[event target];
NSUInteger x =[letterArray indexOfObject:currentLetter];
NSUInteger y =[letterArray indexOfObject:currentBalloon.info];
if (y == x) {
// do the following code
NSLog(@"Equal!");
} else {
NSLog(@"Not Equal!");
}
我一直在 indexOfObject 线上崩溃。有大神有什么想法吗?