NYExaminationTipsViewController.h 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. //
  2. // NYExaminationTipsViewController.h
  3. // jiaPei
  4. //
  5. // Created by Ning.ge on 2024/11/5.
  6. // Copyright © 2024 JCZ. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface NYExaminationTipsViewController : UIViewController
  11. @property (weak, nonatomic) IBOutlet UILabel *title_label;
  12. @property (weak, nonatomic) IBOutlet UIView *t0_View;
  13. @property (weak, nonatomic) IBOutlet UILabel *t0_jq_label;
  14. @property (weak, nonatomic) IBOutlet UILabel *t0_answer_label;
  15. @property (weak, nonatomic) IBOutlet UIButton *t0_close_btn;
  16. @property (weak, nonatomic) IBOutlet UIView *t1_View;
  17. @property (weak, nonatomic) IBOutlet UILabel *t1_centont_label;
  18. @property (weak, nonatomic) IBOutlet UIButton *t1_submit_btn;
  19. @property (weak, nonatomic) IBOutlet UIButton *t1_jxks_btn;
  20. @property (weak, nonatomic) IBOutlet UIView *t2_View;
  21. @property (weak, nonatomic) IBOutlet UILabel *t2_centont_label;
  22. @property (weak, nonatomic) IBOutlet UIButton *t2_close_btn;
  23. @property (weak, nonatomic) IBOutlet UIView *t3_View;
  24. @property (weak, nonatomic) IBOutlet UILabel *t3_centont_label;
  25. @property (weak, nonatomic) IBOutlet UIButton *t3_close_btn;
  26. @property (weak, nonatomic) IBOutlet UIButton *t3_confirm_btn;
  27. -(void)showTypeTipsView:(int)type invView:(UIView*)view inModel:(RQExerciseModel*)model;
  28. @end
  29. NS_ASSUME_NONNULL_END