12345678910111213141516171819202122232425262728 |
- //
- // RQExerciseToolBarView.h
- // SDJK
- //
- // Created by 张嵘 on 2021/8/16.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface RQExerciseToolBarView : UIView
- @property (weak, nonatomic) IBOutlet UIView *lastQuestionView;
- @property (weak, nonatomic) IBOutlet UILabel *correctOptionNumLabel;
- @property (weak, nonatomic) IBOutlet UILabel *errorOptionNumLabel;
- @property (weak, nonatomic) IBOutlet UIView *totalNumberOfQuestionsView;
- @property (weak, nonatomic) IBOutlet UILabel *totalNumberOfQuestionsLabel;
- @property (weak, nonatomic) IBOutlet UILabel *currentQuestionNumLabel;
- @property (weak, nonatomic) IBOutlet UILabel *allQuestionNumLabel;
- @property (weak, nonatomic) IBOutlet UIView *officialInterpretationView;
- @property (weak, nonatomic) IBOutlet UIView *nextQuestionView;
- /// init
- + (instancetype)exerciseToolBarView;
- @end
- NS_ASSUME_NONNULL_END
|