我通过屏幕上设置的 UITapGestureRecognizer 获得了 x 和 y,在获得了我发现对象触摸的位置后,我设置了条件,但不起作用。也许我在目标 C 中放置了错误的条件?Xcode 没有给出错误,但该功能不起作用。
-(void)tappedMapOniPad:(int)x andy:(int)y{
NSLog(@"the x is: %d", x);
//the x is: 302
NSLog(@"the y is: %d", y);
//the y is: 37
if((121<x<=181) && (8<y<=51)){ //the error is here
self.stand = 431;
}else if ((181<x<=257) && (8<y<=51)){
self.stand=430;
}else if ((257<x<=330) && (8<y<=51)){
self.stand = 429;
}
NSLog(@"The stand is %d", self.stand);
//The stand is 431
}
我能怎么做?