I'm using a subclass of UIGestureRecognizer taken from here: Tap pressure strength detection using accelerometer
I'm adding it to two UIImageViews like so:
CPBPressureTouchGestureRecognizer *tap = [[CPBPressureTouchGestureRecognizer alloc] initWithTarget:self action:@selector(tapRegistered)];
[image1 addGestureRecognizer:tap];
[image2 addGestureRecognizer:tap];
For some reason, only the last UIImageView actually has the gesture recognizer added to it. Any ideas?
Thanks!