selectCountryVC.h 707 B

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