A button for countdown
- 倒计时按钮
- add property 'countdownBackgroundColor'.
- update.
- upload.
.h
/// Prefix.
@property (nonatomic, copy) NSString *prefixTitle;
/// Countdown number.
@property (nonatomic, assign) NSUInteger countdownNumber;
/// Subfix.
@property (nonatomic, copy) NSString *subfixTitle;
/// Default is 'blackColor'
@property (nonatomic, strong) UIColor *countdownTitleColor;
/// Default is nil.
@property (nonatomic, strong) UIColor *countdownBackgroundColor;
/// Default is '获取验证码'
@property (nonatomic, copy) NSString *defaultTitle;
/// Default is 'blackColor'
@property (nonatomic, strong) UIColor *defaultTitleColor;
/// Default is ‘重新发送’.
@property (nonatomic, copy) NSString *countdownFinishTitle;
/// Default is 'blackColor'
@property (nonatomic, strong) UIColor *countdownFinishTitleColor;
- (void)fireTimer;
- (void)reFireTimer;