口袋优选

KBCountDownView.h 640B

1234567891011121314151617181920212223242526272829303132333435
  1. //
  2. // KBCountDownView.h
  3. // YouHuiProject
  4. //
  5. // Created by 小花 on 2018/1/17.
  6. // Copyright © 2018年 kuxuan. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @class KBCountDownView;
  10. @protocol YHCountDownViewDelegate <NSObject>
  11. - (void)countViewTimeOutAction;
  12. @end
  13. @interface KBCountDownView : UIView
  14. @property (nonatomic, weak) id<YHCountDownViewDelegate> delegate;
  15. /**
  16. 单例初始化方法,用于cell上,配合setEndTimer方法
  17. */
  18. + (instancetype)shareInstace;
  19. - (void)setEndTimer:(NSString *)endTimer;
  20. /**
  21. 普通初始化方法
  22. */
  23. - (instancetype)initWithFrame:(CGRect)frame andEndTimer:(NSString *)endTimer;
  24. @end