123456789101112131415161718 |
- //
- // RQCountdownView.h
- // JSJP
- //
- // Created by 张嵘 on 2021/8/24.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface RQCountdownView : UIView
- @property (weak, nonatomic) IBOutlet UIButton *countDownBtn;
- @property (weak, nonatomic) IBOutlet UILabel *timeLabel;
- + (instancetype)countdownView;
- @end
- NS_ASSUME_NONNULL_END
|