RQErrorExerciseToolBarView.h 807 B

123456789101112131415161718192021222324
  1. //
  2. // RQErrorExerciseToolBarView.h
  3. // SDJK
  4. //
  5. // Created by 张嵘 on 2022/5/20.
  6. //
  7. #import <UIKit/UIKit.h>
  8. NS_ASSUME_NONNULL_BEGIN
  9. @interface RQErrorExerciseToolBarView : UIView
  10. @property (weak, nonatomic) IBOutlet UIView *deleteView;
  11. @property (weak, nonatomic) IBOutlet UILabel *correctOptionNumLabel;
  12. @property (weak, nonatomic) IBOutlet UILabel *errorOptionNumLabel;
  13. @property (weak, nonatomic) IBOutlet UIView *totalNumberOfQuestionsView;
  14. @property (weak, nonatomic) IBOutlet UILabel *totalNumberOfQuestionsLabel;
  15. @property (weak, nonatomic) IBOutlet UILabel *currentQuestionNumLabel;
  16. @property (weak, nonatomic) IBOutlet UILabel *allQuestionNumLabel;
  17. @property (weak, nonatomic) IBOutlet UIView *officialInterpretationView;
  18. + (instancetype)errorExerciseToolBarView;
  19. @end
  20. NS_ASSUME_NONNULL_END