UIControl+recurClick.h 492 B

12345678910111213141516
  1. //
  2. // UIControl+recurClick.h
  3. // 主要解决按钮的重复点击问题
  4. //
  5. // Created by pican zhang on 2016/12/13.
  6. // Copyright © 2016年 pican. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface UIControl (recurClick)
  10. @property (nonatomic, assign) NSTimeInterval uxy_acceptEventInterval;
  11. @property (nonatomic, assign)BOOL uxy_ignoreEvent;
  12. @end
  13. static const char *UIControl_acceptEventInterval = "UIControl_acceptEventInterval";
  14. static const void *BandNameKey = &BandNameKey;