12345678910111213141516171819202122 |
- //
- // UIView+gesture.h
- //
- // Created by CHD on 2018/5/8.
- // Copyright © 2018年 chd. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- typedef void (^GestureActionBlock)(UIGestureRecognizer *gestureRecoginzer);
- @interface UIView (gesture)
- /**
- * @brief 添加tap手势
- * @param block 代码块
- */
- - (void)addTapActionWithBlock:(GestureActionBlock)block;
- /**
- * @brief 添加长按手势
- * @param block 代码块
- */
- - (void)addLongPressActionWithBlock:(GestureActionBlock)block;
- @end
|