selectAreaVC.h 594 B

123456789101112131415161718192021222324
  1. //
  2. // selectAreaVC.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 selectAreaVC: JXTableViewController{
  11. NSMutableDictionary* _array;
  12. NSArray* _keys;
  13. int _refreshCount;
  14. int _selMenu;
  15. }
  16. @property(assign)int parentId;
  17. @property(nonatomic,strong)NSString* parentName;
  18. @property(nonatomic,assign) int selected;
  19. @property(nonatomic,strong) NSString* selValue;
  20. @property(nonatomic,weak) id delegate;
  21. @property(assign) SEL didSelect;
  22. @end