12345678910111213141516171819202122232425 |
- //
- // MLMGestureSegmentScroll.m
- // Starbuds
- //
- // Created by 翟玉磊 on 2020/1/3.
- // Copyright © 2020 翟玉磊. All rights reserved.
- //
- #import "MLMGestureSegmentScroll.h"
- @interface MLMGestureSegmentScroll ()<UIGestureRecognizerDelegate>
- @end
- @implementation MLMGestureSegmentScroll
- -(BOOL)gestureRecognizer:(UIGestureRecognizer *)gestureRecognizer shouldRecognizeSimultaneouslyWithGestureRecognizer:(UIGestureRecognizer *)otherGestureRecognizer {
- if(gestureRecognizer.state != 0 && (self.contentOffset.x == 0 || self.contentOffset.x == (self.contentSize.width - self.f_width))) {
- return YES;
- }else {
- return NO;
- }
- }
- @end
|