RQCountdownView.h 340 B

123456789101112131415161718
  1. //
  2. // RQCountdownView.h
  3. // JSJP
  4. //
  5. // Created by 张嵘 on 2021/8/24.
  6. //
  7. #import <UIKit/UIKit.h>
  8. NS_ASSUME_NONNULL_BEGIN
  9. @interface RQCountdownView : UIView
  10. @property (weak, nonatomic) IBOutlet UIButton *countDownBtn;
  11. @property (weak, nonatomic) IBOutlet UILabel *timeLabel;
  12. + (instancetype)countdownView;
  13. @end
  14. NS_ASSUME_NONNULL_END