// // RQErrorExerciseToolBarView.h // SDJK // // Created by 张嵘 on 2022/5/20. // #import NS_ASSUME_NONNULL_BEGIN @interface RQErrorExerciseToolBarView : UIView @property (weak, nonatomic) IBOutlet UIView *deleteView; @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; + (instancetype)errorExerciseToolBarView; @end NS_ASSUME_NONNULL_END