selectProvinceVC.h 811 B

1234567891011121314151617181920212223242526272829
  1. //
  2. // selectProvinceVC.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 selectProvinceVC: JXTableViewController{
  11. NSMutableDictionary* _array;
  12. int _refreshCount;
  13. NSMutableDictionary* _province;
  14. }
  15. @property(assign)int parentId;
  16. @property(strong,nonatomic)NSString* parentName;
  17. @property(nonatomic,assign) BOOL showCity;
  18. @property(nonatomic,assign) BOOL showArea;
  19. @property(nonatomic,assign) int selected;
  20. @property(nonatomic,strong) NSString* selValue;
  21. @property(nonatomic,weak) id delegate;
  22. @property(assign) SEL didSelect;
  23. @property(nonatomic,assign) int provinceId;
  24. @property(nonatomic,assign) int cityId;
  25. @property(nonatomic,assign) int areaId;
  26. @end