Files
BingoGrassland/Assets/MYp0ZVTT2QSDK/Plugins/iOS/CountryInfo.mm
T
2026-06-05 15:02:47 +08:00

13 lines
415 B
Plaintext

#import <Foundation/Foundation.h>
extern "C" {
__attribute__((visibility("default")))
const char* _GetDeviceCountryCode() {
@autoreleasepool {
NSLocale *currentLocale = [NSLocale currentLocale];
NSString *countryCode = [currentLocale objectForKey:NSLocaleCountryCode];
return strdup([countryCode UTF8String]); // 使用strdup确保内存安全
}
}
}