12345678910111213141516171819202122 |
- //
- // NYQuestionContentViewModel.h
- // jiaPei
- //
- // Created by Ning.ge on 2024/10/31.
- // Copyright © 2024 JCZ. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface NYQuestionContentViewModel : NSObject<UITableViewDelegate,UITableViewDataSource>
- @property (nonatomic,strong) NSMutableArray *dataSource;
- -(void)loadQuestionContentView:(RQExerciseModel*)exerciseModel tableView:(UITableView *)tableView;
- @end
- NS_ASSUME_NONNULL_END
|