I'm setting up a LPGR like so and I was wonder if I can create a tag in each LPGR. I need to do this so I know which of all my buttons is being pressed...
UILongPressGestureRecognizer *longpressGesture = [[UILongPressGestureRecognizer alloc] initWithTarget:self action:@selector(longPressHandler:)];
longpressGesture.minimumPressDuration = 2;
[longpressGesture setDelegate:self];
[pushButton addGestureRecognizer:longpressGesture];
And my method below...
- (void)longPressHandler:(UILongPressGestureRecognizer *)gestureRecognizer {
NSLog(@"longPressHandler");
}
I know you can't pass arguments via selectors, so I was wondering if I could assign a tag to the LPGR or if in the method I could grab the tag of the button that was using the LPGR? Is any of this possible>?
EDIT:
NSInteger *tag = [gestureRecognizer.view.tag];
NSLog(@"%@ longPressHandler",tag);
