我正在开发适用于iPad的iOS应用。我使用I代码来检测用户何时触摸对象,但现在我想使用相同的代码来检测用户何时不触摸对象。这是代码:
- (void)touchesBegan:(NSSet*)touches withEvent:(UIEvent*)event {
UITouch *touch = [touches anyObject];
CGPoint location = [touch locationInView:[touch view]];
if (CGRectContainsPoint(ribbon.frame, location) || CGRectContainsPoint(inferior.frame, location) || CGRectContainsPoint(superior.frame, location) & (pujat==YES)){
pujat=NO;
[UIView animateWithDuration:0.25 animations:^{
superior.frame = CGRectMake(0, 710, 1024,500);
ribbon.frame = CGRectMake(480, 685, 70,70);
inferior.frame = CGRectMake(0, 750, 1024,500);}];
[self.view bringSubviewToFront:inferior];
}
}
那么如何检测用户何时触摸屏幕而不是某个对象?
答案 0 :(得分:3)
实际上,如果触摸点不在某个对象上,CGRectContainsPoint将返回false。假设您要检查触摸点是否带状。只有一个“!”就够了。
- (void)touchesBegan:(NSSet*)touches withEvent:(UIEvent*)event {
UITouch *touch = [touches anyObject];
CGPoint location = [touch locationInView:[touch view]];
if (CGRectContainsPoint(ribbon.frame, location) || CGRectContainsPoint(inferior.frame, location) || CGRectContainsPoint(superior.frame, location) & (pujat==YES)){
if(!CGRectContainsPoints(ribbon.frame,location))
NSLog("Touch point is not on ribbon");
pujat=NO;
[UIView animateWithDuration:0.25 animations:^{
superior.frame = CGRectMake(0, 710, 1024,500);
ribbon.frame = CGRectMake(480, 685, 70,70);
inferior.frame = CGRectMake(0, 750, 1024,500);}];
[self.view bringSubviewToFront:inferior];
}
}