up vote 5 down vote favorite
3
share [g+] share [fb]

Is there a built in function equivalent to .NET's

Guid.NewGuid();

in Cocoa?

My desire is to produce a string along the lines of 550e8400-e29b-41d4-a716-446655440000 which represents a unique identifier.

link|improve this question

3  
Rather than ask "is there an equivalent function to foo()" you should explain what the function you're asking about does. Mac OS X doesn't have "Guid" objects, it has CFUUIDRef. Long-time Mac developers might not know a "Guid" from a hole in the ground. – Chris Hanson Nov 16 '08 at 10:07
feedback

6 Answers

up vote 23 down vote accepted

UUIDs are handled in Core Foundation, by the CFUUID library. The function you are looking for is CFUUIDCreate.

FYI for further searches: these are most commonly known as UUIDs, the term GUID isn't used very often outside of the Microsoft world. You might have more luck with that search term.

link|improve this answer
feedback

Some code:

For a string UUID, the following class method should do the trick:

+(NSString*)UUIDString {
    CFUUIDRef theUUID = CFUUIDCreate(NULL);
    CFStringRef string = CFUUIDCreateString(NULL, theUUID);
    CFRelease(theUUID);
    return [(NSString *)string autorelease];
}

if you really want the bytes (not the string):

+(CFUUIDBytes)UUIDBytes {
    CFUUIDRef theUUID = CFUUIDCreate(NULL);
    CFUUIDBytes bytes = CFUUIDGetUUIDBytes(theUUID);
    CFRelease(theUUID);
    return bytes;
}

where CFUUIDBytes is a struct of the UUID bytes.

link|improve this answer
feedback

Check out the Wikipedia article and the Core Foundation page.

link|improve this answer
feedback

or there's the genuuid command line tool.

link|improve this answer
Apparently that utility has been renamed uuidgen. At least, as of Snow Leopard. – VxJasonxV Apr 27 '11 at 20:14
feedback

At least on MacOSX 10.5.x you might use the command line tool "uuidgen" to get your string e.g.

$ uuidgen

054209C4-3873-4679-8104-3C18AE780512

there's also an option -hdr with this comand that conveniently generates it in header style

See man-page for further infos.

link|improve this answer
This still works as of Mac OS X 10.7 "Lion" – Jonathan Eunice Jan 17 at 19:10
feedback

Since 10.3 or so, you can use -[NSProcessInfo globallyUniqueString]. However, while this currently generates a UUID, it never has been and still isn't guaranteed to do that, so if you really need a UUID and not just any unique string, you should use CFUUID.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.