SPSBChooseCityManager.h 788 B

12345678910111213141516171819202122232425
  1. //
  2. // SPSBChooseCityManager.h
  3. // 我的社保
  4. //
  5. // Created by jiaxian_he on 2021/5/31.
  6. //
  7. #import <Foundation/Foundation.h>
  8. NS_ASSUME_NONNULL_BEGIN
  9. @interface SPSBChooseCityManager : NSObject
  10. + (SPSBChooseCityManager *)shareManagerWithFileName:(NSString *)fileName;
  11. - (NSArray *)getPrimaryProvinceArrayAndProvinceIDArrayAndIndexsWithSelectedCityArray:(NSArray *)selectedCityArray;
  12. - (NSArray *)getProvinceArrayAndProvinceIDArrayWithProvinceIndex:(NSInteger)provinceIndex;
  13. - (NSArray *)getCityArrayWithProvinceIndex:(NSInteger)provinceIndex;
  14. - (NSString *)getCityIdWithProvinceIndex:(NSInteger)provinceIndex cityIndex:(NSInteger)cityIndex;
  15. - (NSArray *)getCityArrayWithId:(NSString *)cityId;
  16. - (NSArray *)addSelectedCityArrayCityId:(NSString *)cityId;
  17. @end
  18. NS_ASSUME_NONNULL_END