Skip to content

Instantly share code, notes, and snippets.

@garethng
Last active January 10, 2025 08:28
Show Gist options
  • Save garethng/460d16f9bfa96a5b68c5b5a042e5b3b7 to your computer and use it in GitHub Desktop.
Save garethng/460d16f9bfa96a5b68c5b5a042e5b3b7 to your computer and use it in GitHub Desktop.
Read userdefaults with c++ on Mac
#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