12345678910111213141516171819202122232425 |
- //
- // SPSBChooseCityManager.h
- // 我的社保
- //
- // Created by jiaxian_he on 2021/5/31.
- //
- #import <Foundation/Foundation.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface SPSBChooseCityManager : NSObject
- + (SPSBChooseCityManager *)shareManagerWithFileName:(NSString *)fileName;
- - (NSArray *)getPrimaryProvinceArrayAndProvinceIDArrayAndIndexsWithSelectedCityArray:(NSArray *)selectedCityArray;
- - (NSArray *)getProvinceArrayAndProvinceIDArrayWithProvinceIndex:(NSInteger)provinceIndex;
- - (NSArray *)getCityArrayWithProvinceIndex:(NSInteger)provinceIndex;
- - (NSString *)getCityIdWithProvinceIndex:(NSInteger)provinceIndex cityIndex:(NSInteger)cityIndex;
- - (NSArray *)getCityArrayWithId:(NSString *)cityId;
- - (NSArray *)addSelectedCityArrayCityId:(NSString *)cityId;
- @end
- NS_ASSUME_NONNULL_END
|