RQHandInThePaperView.h 581 B

123456789101112131415161718192021
  1. //
  2. // RQHandInThePaperView.h
  3. // SDJK
  4. //
  5. // Created by 张嵘 on 2021/8/24.
  6. //
  7. #import <UIKit/UIKit.h>
  8. NS_ASSUME_NONNULL_BEGIN
  9. @interface RQHandInThePaperView : UIView
  10. @property (weak, nonatomic) IBOutlet UIButton *handInThePaperBtn;
  11. @property (weak, nonatomic) IBOutlet UIButton *lastQuestionBtn;
  12. @property (weak, nonatomic) IBOutlet UIButton *nextQuestionBtn;
  13. @property (weak, nonatomic) IBOutlet UILabel *totalNumberOfQuestionsLabbel;
  14. @property (weak, nonatomic) IBOutlet UIButton *totalNumberOfQuestionsBtn;
  15. + (instancetype)handInThePaperView;
  16. @end
  17. NS_ASSUME_NONNULL_END