RQCountdownView.m 303 B

123456789101112131415161718192021222324
  1. //
  2. // RQCountdownView.m
  3. // JSJP
  4. //
  5. // Created by 张嵘 on 2021/8/24.
  6. //
  7. #import "RQCountdownView.h"
  8. @interface RQCountdownView ()
  9. @end
  10. @implementation RQCountdownView
  11. + (instancetype)countdownView {
  12. return [super rq_viewFromXib];
  13. }
  14. - (void)awakeFromNib {
  15. [super awakeFromNib];
  16. }
  17. @end