selectCityVC.h 699 B

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