RQExerciseToolBarView.h 711 B

1234567891011121314151617181920212223242526272829
  1. //
  2. // RQExerciseToolBarView.h
  3. // JSJP
  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 UILabel *correctOptionNumLabel;
  11. @property (weak, nonatomic) IBOutlet UILabel *errorOptionNumLabel;
  12. @property (weak, nonatomic) IBOutlet UILabel *totalNumberOfQuestionsLabel;
  13. @property (weak, nonatomic) IBOutlet QMUIButton *handInBtn;
  14. @property (weak, nonatomic) IBOutlet QMUIButton *collectBtn;
  15. @property (weak, nonatomic) IBOutlet QMUIButton *deleteBtn;
  16. @property (weak, nonatomic) IBOutlet UIStackView *catalogueView;
  17. /// init
  18. + (instancetype)exerciseToolBarView;
  19. @end
  20. NS_ASSUME_NONNULL_END