UIView+gesture.h 336 B

12345678910111213
  1. //
  2. // UIView+gesture.h
  3. //
  4. // Created by CHD on 2018/5/8.
  5. // Copyright © 2018年 chd. All rights reserved.
  6. //
  7. #import <UIKit/UIKit.h>
  8. @interface UIView (gesture)
  9. - (void)setTapActionWithBlock:(void (^)(UITapGestureRecognizer*tap))block;
  10. - (void)setLongPressActionWithBlock:(void (^)(UILongPressGestureRecognizer*longP))block;
  11. @end