MLMGestureSegmentScroll.m 664 B

12345678910111213141516171819202122232425
  1. //
  2. // MLMGestureSegmentScroll.m
  3. // Starbuds
  4. //
  5. // Created by 翟玉磊 on 2020/1/3.
  6. // Copyright © 2020 翟玉磊. All rights reserved.
  7. //
  8. #import "MLMGestureSegmentScroll.h"
  9. @interface MLMGestureSegmentScroll ()<UIGestureRecognizerDelegate>
  10. @end
  11. @implementation MLMGestureSegmentScroll
  12. -(BOOL)gestureRecognizer:(UIGestureRecognizer *)gestureRecognizer shouldRecognizeSimultaneouslyWithGestureRecognizer:(UIGestureRecognizer *)otherGestureRecognizer {
  13. if(gestureRecognizer.state != 0 && (self.contentOffset.x == 0 || self.contentOffset.x == (self.contentSize.width - self.f_width))) {
  14. return YES;
  15. }else {
  16. return NO;
  17. }
  18. }
  19. @end