Files
Zoomatch_unity_ios/Assets/RGKT2NIYSDK/Plugins/iOS/CountryInfo.mm
T
2026-05-28 15:23:36 +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确保内存安全
}
}
}