BGChatSegmentScrollController.m 504 B

12345678910111213141516171819202122
  1. //
  2. // BGChatSegmentScrollController.m
  3. // BuguLive
  4. //
  5. // Created by 朱庆彬 on 2017/9/4.
  6. // Copyright © 2017年 xfg. All rights reserved.
  7. //
  8. #import "BGChatSegmentScrollController.h"
  9. @implementation BGChatSegmentScrollController
  10. - (BOOL)gestureRecognizer:(UIGestureRecognizer *)gestureRecognizer shouldRequireFailureOfGestureRecognizer:(UIGestureRecognizer *)otherGestureRecognizer
  11. {
  12. if (otherGestureRecognizer.state != 0) {
  13. return YES;
  14. } else {
  15. return NO;
  16. }
  17. }
  18. @end