WMScrollView.h 394 B

1234567891011121314151617
  1. //
  2. // WMScrollView.h
  3. // WMPageController
  4. //
  5. // Created by lh on 15/11/21.
  6. // Copyright (c) 2015年 yq. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface WMScrollView : UIScrollView <UIGestureRecognizerDelegate>
  10. /// 左滑时同时启用其他手势,比如系统左滑、sidemenu左滑。默认 NO
  11. @property (assign, nonatomic) BOOL otherGestureRecognizerSimultaneously;
  12. @end