ChatGPT解决这个技术问题 Extra ChatGPT

How to create a GUID/UUID using iOS

I want to be able to create a GUID/UUID on the iPhone and iPad.

The intention is to be able to create keys for distributed data that are all unique. Is there a way to do this with the iOS SDK?

There's an article about how to ensure you never lose that generated UUID, even for iOS 5 and later using the KeyChain. blog.onliquid.com/…

O
Olie
[[UIDevice currentDevice] uniqueIdentifier]

Returns the Unique ID of your iPhone.

EDIT: -[UIDevice uniqueIdentifier] is now deprecated and apps are being rejected from the App Store for using it. The method below is now the preferred approach.

If you need to create several UUID, just use this method (with ARC):

+ (NSString *)GetUUID
{
  CFUUIDRef theUUID = CFUUIDCreate(NULL);
  CFStringRef string = CFUUIDCreateString(NULL, theUUID);
  CFRelease(theUUID);
  return (__bridge NSString *)string;
}

EDIT: Jan, 29 2014: If you're targeting iOS 6 or later, you can now use the much simpler method:

NSString *UUID = [[NSUUID UUID] UUIDString];

[[UIDevice currentDevice] uniqueIdentifier] has been deprecated as of iOS 5, and Apple is now rejecting apps that use it (as of March 2012). The rest of the response is still accurate.
Having been around this question for a while, I'm pretty sure the original question wasn't about the device's unique identifier, but about just getting a useful general unique identifier for something.
To make this ARC compliant you must cast the string object and remove the autorelease call. In other words add the cast: NSString* string = (__bridge_transfer NSString*)CFUUIDCreateString(NULL, theUUID);
As of iOS 6 you can use: NSString *UUID = [[NSUUID UUID] UUIDString];
If i use [[NSUUID UUID] UUIDString]; in iOS7 and above, won't my app rejected by Apple?
t
trillions

Here is the simple code I am using, compliant with ARC.

+(NSString *)getUUID
{
    CFUUIDRef newUniqueId = CFUUIDCreate(kCFAllocatorDefault);
    NSString * uuidString = (__bridge_transfer NSString*)CFUUIDCreateString(kCFAllocatorDefault, newUniqueId);
    CFRelease(newUniqueId);

    return uuidString;
}

Honestly this should be the accepted answer, the original question asked for a GUID or UUID generator, and everyone responded with how to obtain the phone's UDID. A Universally Unique Identifier (UUID) and Unique Device Identifier (UDID) are not the same thing.
here is a straight line one NSString *UUID = [[NSUUID UUID] UUIDString];
A
Arian Sharifian

In iOS 6 you can easily use:

NSUUID  *UUID = [NSUUID UUID];
NSString* stringUUID = [UUID UUIDString];

More details in Apple's Documentations


This is by far the simplest solution. If you don't have to support prior to iOS 6, use this. I was using core data generated permanent IDs, but this is much better. +1
Perfect, thank you for this! This is my +1 answer for the day :)
It change every time I run app in simulator.
B
Bill the Lizard

Reviewing the Apple Developer documentation I found the CFUUID object is available on the iPhone OS 2.0 and later.


K
King-Wizard

In Swift:

var uuid: String = NSUUID().UUIDString
println("uuid: \(uuid)")

R
Ryan McCuaig

The simplest technique is to use NSString *uuid = [[NSProcessInfo processInfo] globallyUniqueString]. See the NSProcessInfo class reference.


That returns a unique identifier for the process. It has no resemblance to a GUID. From the docs: "The ID includes the host name, process ID, and a time stamp, which ensures that the ID is unique for the network"
You could be right. It's a pragmatic one-liner, and probably isn't as bulletproof as CFUUID. Anyone who needs the greater rigour ought to drop down to CoreFoundation.
R
Radu Diță

In Swift 3.0

var uuid = UUID().uuidString

N
NANNAV

I've uploaded my simple but fast implementation of a Guid class for ObjC here: obj-c GUID

Guid* guid = [Guid randomGuid];
NSLog("%@", guid.description);

It can parse to and from various string formats as well.