Search code examples
iphoneviewsubviewtouchesbegan

How can I get touchesBegan event on SuperView


In my program there is two views(scrollView-super, view-sub*2).

In my case two subviews are subviewed in scrollView. touchesBegan event called in subviews.

How Can I get event in scrollView???

@interface MyScrollView:UIScrollView
...
@implement MyScrollView
...
-(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event
{
    //here is my code
    //but I can't get event here
   ...
}
-(id)initWithFrame:(CGRect) frame
{
...
    MyView *view1 = [[MyView alloc] initWithFrame:(0, 0, 320, 240);
    MyView *view2 = [[Myview alloc] initWithFrame:(0, 240, 320,240);
    [self addSubview: view1];
    [self addSibvoew: view2];
...
}

@interface MyView:UIView
...
@implement MyScrollView
...
-(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event
{
   //break points 
   //here comes event
}

Solution

  • Try this code..

    UITapGestureRecognizer *singleTap = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(singleTapGestureCaptured:)];
    
    [scroll addGestureRecognizer:singleTap];
    
    - (void)singleTapGestureCaptured:(UITapGestureRecognizer *)touch{
        CGPoint touchPoint=[gesture locationInView:scrollView]; 
        touchPoint = [touch locationInView:self.view];  
    }