| | |
| | | |
| | | //#define CURR_LANG ([[NSLocale preferredLanguages] objectAtIndex:0]) |
| | | //#define LanguageIsChinese ([CURR_LANG rangeOfString:@"zh-Hans"].location != NSNotFound) |
| | | |
| | | ////中文走国内, 不是中文走海外 |
| | | #define EZOPENSDK LanguageIsChinese ? [EZOpenSDK class] : [EZGlobalSDK class] |
| | | |
| | | //2021-02-01 不考虑海外先,默认国内 |
| | | //2021-02-01 不考虑海外先 |
| | | #define LanguageIsChinese true |
| | | |
| | | |
| | | |
| | | @interface GlobalKit : NSObject |
| | | |
| | | @property (nonatomic, copy) NSString *GlobalRequestHttpsHost; |
| | | @property (nonatomic, copy) NSString *hdlAccessToken; |
| | | @property (nonatomic, copy) NSString *hdlRefreshToken; |
| | | |
| | | @property (nonatomic, copy) NSString *accessToken; |
| | | @property (nonatomic, copy) NSString *deviceSerialNo; //设备序列号 |
| | |
| | | - (void)clearDeviceInfo; |
| | | |
| | | //+(void)hello; |
| | | |
| | | |
| | | |
| | | @end |