12345678910111213141516171819202122 |
- //
- // RQExerciseExamToolBarCell.h
- // SDJK
- //
- // Created by 张嵘 on 2021/8/24.
- //
- #import "RQCommonCell.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface RQExerciseExamToolBarCell : RQCommonCell
- @property (weak, nonatomic) IBOutlet UIButton *collectBtn;
- @property (weak, nonatomic) IBOutlet UIButton *readingQuestionsAndAnswersBtn;
- @property (weak, nonatomic) IBOutlet UIButton *readingQuestionsBtn;
- @property (weak, nonatomic) IBOutlet UIButton *lastQuestionBtn;
- @property (weak, nonatomic) IBOutlet UIButton *nextQuestionBtn;
- @property (weak, nonatomic) IBOutlet UILabel *totalNumberOfQuestionsLabbel;
- @property (weak, nonatomic) IBOutlet UIButton *totalNumberOfQuestionsBtn;
- @end
- NS_ASSUME_NONNULL_END
|