ListVC.h 569 B

123456789101112131415161718192021222324252627
  1. //
  2. // ListVC.h
  3. // jiaPei
  4. //
  5. // Created by apple on 15/11/4.
  6. // Copyright (c) 2015年 JCZ. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "CLButton.h"
  10. #import "ExerciseVC.h"
  11. @interface ListVC : UIViewController
  12. @property (nonatomic, strong) NSMutableArray *titleList;
  13. @property (nonatomic, strong) NSMutableArray *imagesList;
  14. /**表示对应的【强化练习】题目数量
  15. */
  16. @property (nonatomic, strong) NSMutableArray *countList;
  17. @property (nonatomic, strong) NSMutableArray *whereList;
  18. @property (nonatomic,strong) NSMutableArray* btns;
  19. @end