0

我已经阅读了许多有关启用/禁用触摸事件的问题的答案,但对我没有任何帮助,所以我问了我自己的一个。

我有一个 UIImageView 对象(spot):

// in my view controller header file:
@property (nonatomic, strong) IBOutlet UIImageView *spot;

然后我有与这个对象相关的代码:

// in my view controller .m file:
@synthesize spot

- (void) touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event { 
    // handle when that spot is touched ... 
}

这很好用。例如,我可以在点击地点时更改地点显示的图像。

首先,我想看看如何当场禁用触摸事件,所以我尝试了:

[[UIApplication sharedApplication] beginIgnoringInteractionEvents];

这很好用。在某些时候,取决于我想要做什么,我能够禁用所有触摸事件。

然后我向这个视图控制器添加了一个按钮,我希望该按钮始终可点击,以便始终为该按钮启用触摸事件。

所以现在我禁用触摸事件的方法不起作用,因为它太笨拙了。它会清除该视图中任何位置的所有触摸事件。

我只想禁用该位置的触摸事件。我试过了:

spot.userInteractionEnabled = NO;

但这没有用。该点仍然是可点击的。我也试过:

[spot1 setUserInteractionEnabled:NO];

也没有工作。我很困惑为什么这些不起作用。我的问题是:

如何仅在这一点,这一 UIImageView 对象上禁用触摸事件?

编辑:为了解决下面提出的问题,在 Interface Builder 中,在我的 .xib 中,我已将 UIImageView 对象链接到我的头文件中设置的属性。那是它的参考出口。

4

1 回答 1

2

为什么要为您的位置禁用触摸?如果触摸是从现场进行的,您可以简单地跳过处理。

 -(void)touchesBegan:(NSSet*)touches withEvent:(UIEvent*)event {
     UITouch *touch = [[event allTouches] anyObject];

     CGPoint touchLocation = [touch locationInView:self.view];
     if (CGRectContainsPoint(spot.frame, touchLocation))
         return;

     if (CGRectContainsPoint(button.frame, touchLocation)){
         //do something
     }
 }
于 2013-06-03T05:04:03.710 回答