WLCaptcheButton.h 538 B

12345678910111213141516171819202122
  1. //
  2. // WLCaptcheButton.h
  3. // WLButtonCountingDownDemo
  4. //
  5. // Created by wayne on 16/1/14.
  6. // Copyright © 2016年 ZHWAYNE. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. IB_DESIGNABLE
  10. @interface WLCaptcheButton : UIButton
  11. @property (nonatomic, copy) IBInspectable NSString *identifyKey;
  12. @property (nonatomic, strong) IBInspectable UIColor *disabledBackgroundColor;
  13. @property (nonatomic, strong) IBInspectable UIColor *disabledTitleColor;
  14. @property (nonatomic,assign) NSTimeInterval countdownTime;// 默认60秒
  15. - (void)fire;
  16. @end