// // RQExerciseToolBarView.h // JSJP // // Created by 张嵘 on 2021/8/16. // #import NS_ASSUME_NONNULL_BEGIN @interface RQExerciseToolBarView : UIView @property (weak, nonatomic) IBOutlet UILabel *correctOptionNumLabel; @property (weak, nonatomic) IBOutlet UILabel *errorOptionNumLabel; @property (weak, nonatomic) IBOutlet UILabel *totalNumberOfQuestionsLabel; @property (weak, nonatomic) IBOutlet QMUIButton *handInBtn; @property (weak, nonatomic) IBOutlet QMUIButton *collectBtn; @property (weak, nonatomic) IBOutlet QMUIButton *deleteBtn; @property (weak, nonatomic) IBOutlet UIStackView *catalogueView; /// init + (instancetype)exerciseToolBarView; @end NS_ASSUME_NONNULL_END