Skip to content

Instantly share code, notes, and snippets.

@beelsebob
Created July 27, 2011 09:32
Show Gist options
  • Save beelsebob/1109007 to your computer and use it in GitHub Desktop.
Save beelsebob/1109007 to your computer and use it in GitHub Desktop.
- (NSString *)uuidString
{
CFUUIDRef uuid = CFUUIDCreateFromUUIDBytes(NULL, identityBytes);
CFStringRef str = CFUUIDCreateString(NULL, uuid);
CFMakeCollectable(str);
CFRelease(uuid);
return [(NSString *)str autorelease];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment