| 1234567891011121314151617181920212223242526272829 |
- //
- // cityDefault.h
- // YBVideo
- //
- // Created by 王敏欣 on 2016/12/13.
- // Copyright © 2016年 cat. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- @interface cityDefault : NSObject
- #pragma mark - 定位城市
- +(void)saveLocationCity:(NSString *)save;
- +(NSString *)getLocationCity;
- #pragma mark - 定位经度
- +(void)saveLocationLng:(NSString *)save;
- +(NSString *)getLocationLng;
- #pragma mark - 定位纬度
- +(void)saveLocationLat:(NSString *)save;
- +(NSString *)getLocationLat;
- /// 国家代号
- +(void)saveGdyCountry:(NSString *)save;
- +(NSString *)getGdyCountry;
- @end
|