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