RQExerciseExamKnowAlertView.m 416 B

1234567891011121314151617181920212223242526
  1. //
  2. // RQExerciseExamKnowAlertView.m
  3. // jiaPei
  4. //
  5. // Created by 张嵘 on 2022/8/3.
  6. // Copyright © 2022 JCZ. All rights reserved.
  7. //
  8. #import "RQExerciseExamKnowAlertView.h"
  9. @interface RQExerciseExamKnowAlertView ()
  10. @end
  11. @implementation RQExerciseExamKnowAlertView
  12. + (instancetype)exerciseExamKnowAlertView {
  13. return [self rq_viewFromXib];
  14. }
  15. - (void)awakeFromNib {
  16. [super awakeFromNib];
  17. }
  18. @end