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