// // MLMGestureSegmentScroll.m // Starbuds // // Created by 翟玉磊 on 2020/1/3. // Copyright © 2020 翟玉磊. All rights reserved. // #import "MLMGestureSegmentScroll.h" @interface MLMGestureSegmentScroll () @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