RQExerciseToolBarView.h 872 B

12345678910111213141516171819202122232425262728
  1. //
  2. // RQExerciseToolBarView.h
  3. // SDJK
  4. //
  5. // Created by 张嵘 on 2021/8/16.
  6. //
  7. #import <UIKit/UIKit.h>
  8. NS_ASSUME_NONNULL_BEGIN
  9. @interface RQExerciseToolBarView : UIView
  10. @property (weak, nonatomic) IBOutlet UIView *lastQuestionView;
  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. @property (weak, nonatomic) IBOutlet UIView *nextQuestionView;
  19. /// init
  20. + (instancetype)exerciseToolBarView;
  21. @end
  22. NS_ASSUME_NONNULL_END