123456789101112131415161718192021 |
- //
- // NYQuestionContentView.h
- // jiaPei
- //
- // Created by Ning.ge on 2024/10/30.
- // Copyright © 2024 JCZ. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface NYQuestionContentView : UIView
- @property (nonatomic,weak) UITableView *me_tableView;
- @property (nonatomic, readonly, strong) NYQuestionContentViewModel *questionContentViewModel;
- -(void)readLodData:(RQExerciseModel *)exerciseModel;
- @end
- NS_ASSUME_NONNULL_END
|