UIGestureRecognizer+LookinServer.h 412 B

123456789101112131415161718
  1. //
  2. // UIGestureRecognizer+LookinServer.h
  3. // LookinServer
  4. //
  5. // Created by Li Kai on 2019/8/14.
  6. // https://lookin.work
  7. //
  8. #import <UIKit/UIKit.h>
  9. @class LookinTwoTuple;
  10. @interface UIGestureRecognizer (LookinServer)
  11. /// tuple.first => LookinWeakContainer(包裹着 target),tuple.second => action(方法名字符串)
  12. @property(nonatomic, strong) NSMutableArray<LookinTwoTuple *> *lks_targetActions;
  13. @end