Add a new Gesture Recognizer to your scrollview:
UITapGestureRecognizer *singleTap = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(handleSingleTap:)];[scrollViewCategory addGestureRecognizer: singleTap];
Implement handleSingleTap method with (id *)sender parameter which is useful to find sender object.
- (void) handleSingleTap:(id*)sender{NSLog(@"gesture rec picked up event");}
No comments:
Post a Comment