cityDefault.h 591 B

1234567891011121314151617181920212223242526272829
  1. //
  2. // cityDefault.h
  3. // YBVideo
  4. //
  5. // Created by 王敏欣 on 2016/12/13.
  6. // Copyright © 2016年 cat. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @interface cityDefault : NSObject
  10. #pragma mark - 定位城市
  11. +(void)saveLocationCity:(NSString *)save;
  12. +(NSString *)getLocationCity;
  13. #pragma mark - 定位经度
  14. +(void)saveLocationLng:(NSString *)save;
  15. +(NSString *)getLocationLng;
  16. #pragma mark - 定位纬度
  17. +(void)saveLocationLat:(NSString *)save;
  18. +(NSString *)getLocationLat;
  19. /// 国家代号
  20. +(void)saveGdyCountry:(NSString *)save;
  21. +(NSString *)getGdyCountry;
  22. @end