RQExerciseSubViewController.h 523 B

1234567891011121314151617181920
  1. //
  2. // RQExerciseSubViewController.h
  3. // SDJK
  4. //
  5. // Created by 张嵘 on 2021/8/12.
  6. //
  7. #import "RQCommonViewController.h"
  8. NS_ASSUME_NONNULL_BEGIN
  9. @interface RQExerciseSubViewController : RQCommonViewController <JXPagerViewListViewDelegate>
  10. @property (nonatomic, readwrite, strong) NSMutableArray *questionArr;///<所展示的题目数组
  11. @property (nonatomic, readwrite, assign) NSUInteger count;
  12. @property (nonatomic, readwrite, assign) NSInteger number;/// 记录数字
  13. - (void)rq_setup;
  14. @end
  15. NS_ASSUME_NONNULL_END