NYQuestionContentViewModel.h 480 B

12345678910111213141516171819202122
  1. //
  2. // NYQuestionContentViewModel.h
  3. // jiaPei
  4. //
  5. // Created by Ning.ge on 2024/10/31.
  6. // Copyright © 2024 JCZ. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface NYQuestionContentViewModel : NSObject<UITableViewDelegate,UITableViewDataSource>
  11. @property (nonatomic,strong) NSMutableArray *dataSource;
  12. -(void)loadQuestionContentView:(RQExerciseModel*)exerciseModel tableView:(UITableView *)tableView;
  13. @end
  14. NS_ASSUME_NONNULL_END