1234567891011121314151617181920212223242526272829 |
- //
- // RQExerciseToolBarView.h
- // JSJP
- //
- // Created by 张嵘 on 2021/8/16.
- //
- #import <UIKit/UIKit.h>
- 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
|