Last active
January 10, 2025 08:28
-
-
Save garethng/460d16f9bfa96a5b68c5b5a042e5b3b7 to your computer and use it in GitHub Desktop.
Read userdefaults with c++ on Mac
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <CoreFoundation/CoreFoundation.h> | |
std::string CIdHelper::getCId(int env) { | |
CFStringRef bundle_id = CFSTR("bundle_id"); | |
CFStringRef key = CFSTR("key"); | |
CFPropertyListRef cid = CFPreferencesCopyAppValue(key, bundle_id); | |
if (!cid) { | |
return {}; | |
} | |
char buffer[1024]; | |
if (!CFStringGetCString((CFStringRef)cid, buffer, sizeof(buffer), kCFStringEncodingUTF8)) { | |
CFRelease(cid); | |
return {}; | |
} | |
CFRelease(cid); | |
return std::string(buffer); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment