80

How to get a UUID in objective c, like in Java UUID is used to generate unique random numbers which represents 128 bit value.

Saurabh Jadhav
  • 1,151
  • 3
  • 11
  • 11
  • 1
    possible duplicate of [How to create a GUID/UUID using the iPhone SDK](http://stackoverflow.com/questions/427180/how-to-create-a-guid-uuid-using-the-iphone-sdk) – Basil Bourque May 21 '14 at 23:31

7 Answers7

176

Try:

CFUUIDRef udid = CFUUIDCreate(NULL);
NSString *udidString = (NSString *) CFUUIDCreateString(NULL, udid);

UPDATE:

As of iOS 6, there is an easier way to generate UUID. And as usual, there are multiple ways to do it:

Create a UUID string:

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

Create a UUID:

[NSUUID UUID]; // which is the same as..
[[NSUUID] alloc] init]; 

Creates an object of type NSConcreteUUID and can be easily casted to NSString, and looks like this: BE5BA3D0-971C-4418-9ECF-E2D1ABCB66BE

NOTE from the Documentation:

Note: The NSUUID class is not toll-free bridged with CoreFoundation’s CFUUIDRef. Use UUID strings to convert between CFUUID and NSUUID, if needed. Two NSUUID objects are not guaranteed to be comparable by pointer value (as CFUUIDRef is); use isEqual: to compare two NSUUID instances.

Jan Holecek
  • 2,131
  • 1
  • 16
  • 26
Raptor
  • 53,206
  • 45
  • 230
  • 366
  • 6
    If you are using iOS 6, you can use NSUUID: NSString * uuid = [[NSUUID UUID] UUIDString]; – Eli Burke Jul 25 '13 at 12:58
  • 2
    on line 1, `CFUUIDRef udid` should probably be `CFUUIDRef uuid` to avoid potential confusion of UDID (Unique Device Identifier) with UUID (Universally Unique Identifier) – CgodLEY Apr 23 '14 at 15:47
10

Swift version of Raptor's answer:

let uuid = UUID().uuidString
timbre timbre
  • 12,648
  • 10
  • 46
  • 77
3lil636wm
  • 7,580
  • 3
  • 24
  • 26
6
+ (NSString *)uniqueFileName
{
    CFUUIDRef theUniqueString = CFUUIDCreate(NULL);
    CFStringRef string = CFUUIDCreateString(NULL, theUniqueString);
    CFRelease(theUniqueString);
    return [(NSString *)string autorelease];
}
Pang
  • 9,564
  • 146
  • 81
  • 122
Bergasms
  • 2,203
  • 1
  • 18
  • 20
3
-(NSString*) myUUID()
{
    CFUUIDRef newUniqueID = CFUUIDCreate(kCFAllocatorDefault);
    CFStringRef newUniqueIDString = CFUUIDCreateString(kCFAllocatorDefault, newUniqueID);
    NSString *guid = (__bridge NSString *)newUniqueIDString;
    CFRelease(newUniqueIDString);
    CFRelease(newUniqueID);
    return([guid lowercaseString]);
}
Dominic Sander
  • 2,714
  • 1
  • 18
  • 29
1

you can use CFUUID for iOS 5 or lower version and NSUUID for iOS 6 and 7. for making it more secure you can store your UUID in keychain

Veeru Sharma
  • 35
  • 1
  • 5
0
- (NSString*)generateGUID{
    CFUUIDRef theUUID = CFUUIDCreate(NULL);
    CFStringRef string = CFUUIDCreateString(NULL, theUUID);
    CFRelease(theUUID);
    return [NSString stringWithFormat:@"%@", string];
}
Sargis
  • 1,196
  • 1
  • 18
  • 31
-3

For Swift 5.0, Use this,

    let uuidRef = CFUUIDCreate(nil)
    let uuidStringRef = CFUUIDCreateString(nil, uuidRef)
    let uuid = uuidStringRef as String? ?? ""