2

我在屏蔽后得到这个视图。视图大小是 310 宽度 310 高度。我只想检测黑色区域上的触摸我有一个大框架,通过它我掩盖了一个较小的视图,现在我想检测较小的一个,但触摸开始不允许我过滤蒙面视图的任何指针?

4

1 回答 1

0
- (void)viewDidLoad
{

 UITapGestureRecognizer *gr = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(UIviewTapped:)];
 [yourUIview addGestureRecognizer:gr];

}

-(void) UIviewTapped:(UIView *)view
{

  // write touched code here. 

}
于 2013-03-13T10:44:21.347 回答