Skip to content

Instantly share code, notes, and snippets.

@cokecoffe
Created March 14, 2014 08:29
Show Gist options
  • Save cokecoffe/9544039 to your computer and use it in GitHub Desktop.
Save cokecoffe/9544039 to your computer and use it in GitHub Desktop.
生成唯一标识,可以作为文件或路径名。
+ (NSString *)GUID
{
CFUUIDRef theUUID = CFUUIDCreate(NULL);
CFStringRef theString = CFUUIDCreateString(NULL, theUUID);
NSString *unique = [NSString stringWithString:(__bridge id)theString];
CFRelease(theString); CFRelease(theUUID); // Cleanup CF objects
return unique;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment