I had this problem today, after much time investigating is pretty difficult to achieve, because you can lose the dragging ability in exchange for the buttons click event.
However: I ended up with this, a UIScrollView subclass whose receives the button or buttons to which it is interested in catching the event.
The key is to use [(UIControl*)view sendActionsForControlEvents: UIControlEventTouchUpInside];, because calling touchesBegan method not always works as expected. This won't change the GUI as you press the button but you can implement that as needed in a custom method.
@implementation ForwardScrollView
@synthesize responders = _responders;
- (id)initWithFrame:(CGRect)frame
{
self = [super initWithFrame:frame];
if (self) {
// Initialization code
_touchesEnabled = YES;
}
return self;
}
- (id)initWithCoder:(NSCoder *)aDecoder {
if ( self = [super initWithCoder: aDecoder]) {
_touchesEnabled = YES;
}
return self;
}
- (BOOL)pointInside:(CGPoint)point withEvent:(UIEvent *)event
{
return _touchesEnabled;
}
- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event
{
_touchesEnabled = NO;
UIWindow *window = [UIApplication sharedApplication].delegate.window;
for(UITouch *touch in touches) {
CGPoint point = [touch locationInView:self];
point = [window convertPoint:point fromView:self];
UIView *view = [window hitTest:point withEvent:event];
UITouch* touch = [touches anyObject];
UIGestureRecognizer* recognizer;
if ([touch gestureRecognizers].count > 0) {
recognizer = [touch gestureRecognizers][0];
}
if ( (!recognizer || ![recognizer isMemberOfClass:NSClassFromString(@"UIScrollViewPanGestureRecognizer")]) && [_responders containsObject: view]) {
[(UIControl*)view sendActionsForControlEvents: UIControlEventTouchUpInside];
}
}
_touchesEnabled = YES;
}
@end
The counting on the gestureRecognizers is to avoid the pan gesture that could trigger the button when no real tap is made.