Skip to content

Instantly share code, notes, and snippets.

@jebai0521
Forked from tylercasson/gist:ab463e9f01b3e8f16710
Last active August 29, 2015 14:10
Show Gist options
  • Save jebai0521/dedae8ad9adcc6e808a1 to your computer and use it in GitHub Desktop.
Save jebai0521/dedae8ad9adcc6e808a1 to your computer and use it in GitHub Desktop.
/**
* Link against MobileGestalt
*/
OBJC_EXTERN CFStringRef MGCopyAnswer(CFStringRef property) WEAK_IMPORT_ATTRIBUTE;
void someFunction() {
CFStringRef udid = MGCopyAnswer(CFSTR("UniqueDeviceID"));
/*
Do stuff with it
*/
CFRelease(udid);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment