RQExerciseExamToolBarCell.h 701 B

12345678910111213141516171819202122
  1. //
  2. // RQExerciseExamToolBarCell.h
  3. // SDJK
  4. //
  5. // Created by 张嵘 on 2021/8/24.
  6. //
  7. #import "RQCommonCell.h"
  8. NS_ASSUME_NONNULL_BEGIN
  9. @interface RQExerciseExamToolBarCell : RQCommonCell
  10. @property (weak, nonatomic) IBOutlet UIButton *collectBtn;
  11. @property (weak, nonatomic) IBOutlet UIButton *readingQuestionsAndAnswersBtn;
  12. @property (weak, nonatomic) IBOutlet UIButton *readingQuestionsBtn;
  13. @property (weak, nonatomic) IBOutlet UIButton *lastQuestionBtn;
  14. @property (weak, nonatomic) IBOutlet UIButton *nextQuestionBtn;
  15. @property (weak, nonatomic) IBOutlet UILabel *totalNumberOfQuestionsLabbel;
  16. @property (weak, nonatomic) IBOutlet UIButton *totalNumberOfQuestionsBtn;
  17. @end
  18. NS_ASSUME_NONNULL_END