123456789101112131415161718192021 |
- //
- // RQHandInThePaperView.h
- // SDJK
- //
- // Created by 张嵘 on 2021/8/24.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface RQHandInThePaperView : UIView
- @property (weak, nonatomic) IBOutlet UIButton *handInThePaperBtn;
- @property (weak, nonatomic) IBOutlet UIButton *lastQuestionBtn;
- @property (weak, nonatomic) IBOutlet UIButton *nextQuestionBtn;
- @property (weak, nonatomic) IBOutlet UILabel *totalNumberOfQuestionsLabbel;
- @property (weak, nonatomic) IBOutlet UIButton *totalNumberOfQuestionsBtn;
- + (instancetype)handInThePaperView;
- @end
- NS_ASSUME_NONNULL_END
|