1234567891011121314151617181920212223242526272829303132 |
- //
- // NYTestingCentreCell.h
- // jiaPei
- //
- // Created by Ning.ge on 2023/8/21.
- // Copyright © 2023 JCZ. All rights reserved.
- //
- #import "RQCommonCell.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface NYTestingCentreCell : RQCommonCell
- @property (weak, nonatomic) IBOutlet UILabel *title_label;
- @property (weak, nonatomic) IBOutlet UILabel *word_label_01;
- @property (weak, nonatomic) IBOutlet UILabel *word_label_02;
- @property (weak, nonatomic) IBOutlet UILabel *word_label_03;
- //view bottom
- @property (weak, nonatomic) IBOutlet UIView *bottom_view;
- @property (weak, nonatomic) IBOutlet UIImageView *bottom_imageview;
- //解题button
- @property (weak, nonatomic) IBOutlet QMUIButton *lock_jq_button;
- @end
- NS_ASSUME_NONNULL_END
|