NYTestingCentreCell.h 726 B

1234567891011121314151617181920212223242526272829303132
  1. //
  2. // NYTestingCentreCell.h
  3. // jiaPei
  4. //
  5. // Created by Ning.ge on 2023/8/21.
  6. // Copyright © 2023 JCZ. All rights reserved.
  7. //
  8. #import "RQCommonCell.h"
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface NYTestingCentreCell : RQCommonCell
  11. @property (weak, nonatomic) IBOutlet UILabel *title_label;
  12. @property (weak, nonatomic) IBOutlet UILabel *word_label_01;
  13. @property (weak, nonatomic) IBOutlet UILabel *word_label_02;
  14. @property (weak, nonatomic) IBOutlet UILabel *word_label_03;
  15. //view bottom
  16. @property (weak, nonatomic) IBOutlet UIView *bottom_view;
  17. @property (weak, nonatomic) IBOutlet UIImageView *bottom_imageview;
  18. //解题button
  19. @property (weak, nonatomic) IBOutlet QMUIButton *lock_jq_button;
  20. @end
  21. NS_ASSUME_NONNULL_END