Skip to content

Instantly share code, notes, and snippets.

@jyliang
Created April 11, 2014 18:04
Show Gist options
  • Save jyliang/10488569 to your computer and use it in GitHub Desktop.
Save jyliang/10488569 to your computer and use it in GitHub Desktop.
unique ID
+ (NSString *)createUniqueId {
CFUUIDRef cfuuid = CFUUIDCreate(kCFAllocatorDefault);
CFStringRef string = CFUUIDCreateString(kCFAllocatorDefault, cfuuid);
CFRelease(cfuuid);
return CFBridgingRelease(string);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment