123456789101112131415161718192021222324252627 |
- //
- // ListVC.h
- // jiaPei
- //
- // Created by apple on 15/11/4.
- // Copyright (c) 2015年 JCZ. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "CLButton.h"
- #import "ExerciseVC.h"
- @interface ListVC : UIViewController
- @property (nonatomic, strong) NSMutableArray *titleList;
- @property (nonatomic, strong) NSMutableArray *imagesList;
- /**表示对应的【强化练习】题目数量
- */
- @property (nonatomic, strong) NSMutableArray *countList;
- @property (nonatomic, strong) NSMutableArray *whereList;
- @property (nonatomic,strong) NSMutableArray* btns;
- @end
|