123456789101112131415161718 |
- //
- // VipExamViewController.h
- // jiaPei
- //
- // Created by 张嵘 on 2019/8/26.
- // Copyright © 2019 JCZ. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface VipExamViewController : UIViewController
- @property (nonatomic, readwrite, assign) BOOL showAnswer;///<背题模式 1背题模式
- @property (nonatomic, readwrite, strong) NSMutableArray *questionArr;///<所展示的题目数组
- @end
- NS_ASSUME_NONNULL_END
|