pass scroll event from uibutton to uiscrollview

后端 未结 4 654
旧巷少年郎
旧巷少年郎 2021-02-14 15:59

i have horizontal UIScrollView which is extended from UIScrollView and i added UIButtons horizontally. i can only scroll out of the button

相关标签:
4条回答
  • 2021-02-14 16:24

    Try this:

    self.button.exclusiveTouch = YES
    

    Worked like a charm for me!

    0 讨论(0)
  • 2021-02-14 16:28

    Subclass UIScrollView, return YES in the - touchesShouldCancelInContentView: method.

    0 讨论(0)
  • 2021-02-14 16:30

    that functionality is already built in. When you have a UIControl element as a subview of a scroll view and a touch event is detected, it is initially passed to the UIScrollView. IF, after a moment or two there hasn't been sufficient movement in the touch event, it gets passed on to the button.

    0 讨论(0)
  • 2021-02-14 16:35

    If you subclass NSButton and make your button of that type and override the following in your subclass you can pass the events back to the parent view, in your case the scroll view

    The following would make the button never trigger an event and instead all would be dealt with by the parent view:

    - (void)touchesBegan: (NSSet *)touches withEvent:(UIEvent *)event {
        [self.nextResponder touchesBegan:touches withEvent:event];      
    }
    
    - (void)touchesMoved: (NSSet *)touches withEvent:(UIEvent *)event {
        [self.nextResponder touchesMoved:touches withEvent:event];  
    }
    
    - (void)touchesEnded:(NSSet *)touches withEvent:(UIEvent*)event 
    {
        [self.nextResponder touchesEnded:touches withEvent:event];  
    }
    

    If you want to have the button deal with one of those events instead use

    [super touchesEnded:touches withEvent:event];
    
    0 讨论(0)
提交回复
热议问题