12345678910111213141516171819 |
- //
- // UIButton+KSDelayAction.h
- // KulexiuForTeacher
- //
- // Created by 王智 on 2023/8/11.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface UIButton (KSDelayAction)
- /** 延迟响应时间间隔, 默认0.5秒 */
- @property (nonatomic, assign) NSTimeInterval delayAction;
- @end
- NS_ASSUME_NONNULL_END
|