selectTreeVC.h 824 B

1234567891011121314151617181920212223242526272829
  1. //
  2. // selectTreeVC.h
  3. //
  4. // Created by flyeagleTang on 14-4-3.
  5. // Copyright (c) 2014年 Reese. All rights reserved.
  6. //
  7. #import "JXTableViewController.h"
  8. #import <UIKit/UIKit.h>
  9. @class menuImageView;
  10. @interface selectTreeVC: JXTableViewController{
  11. NSMutableArray* _names;
  12. NSMutableArray* _ids;
  13. NSMutableArray* _typeNames;
  14. NSMutableArray* _typeIds;
  15. int _refreshCount;
  16. }
  17. @property(assign)int parentId;
  18. @property(strong,nonatomic) NSString* parentName;
  19. @property(nonatomic,assign) int selected;
  20. @property(nonatomic,assign) int selNumber;
  21. @property(nonatomic,strong) NSString* selValue;
  22. @property(nonatomic,weak) id delegate;
  23. @property(assign) SEL didSelect;
  24. @property(assign) BOOL hasSubtree;
  25. @property(nonatomic,strong) NSMutableArray* selNames;
  26. @property(nonatomic,strong) NSMutableArray* selIds;
  27. @end