UIButton+KSDelayAction.h 320 B

12345678910111213141516171819
  1. //
  2. // UIButton+KSDelayAction.h
  3. // KulexiuForTeacher
  4. //
  5. // Created by 王智 on 2023/8/11.
  6. //
  7. #import <UIKit/UIKit.h>
  8. NS_ASSUME_NONNULL_BEGIN
  9. @interface UIButton (KSDelayAction)
  10. /** 延迟响应时间间隔, 默认0.5秒 */
  11. @property (nonatomic, assign) NSTimeInterval delayAction;
  12. @end
  13. NS_ASSUME_NONNULL_END