How to get a UUID in objective c, like in Java UUID is used to generate unique random numbers which represents 128 bit value.
-
1possible 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 Answers
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.

- 2,131
- 1
- 16
- 26

- 53,206
- 45
- 230
- 366
-
6If you are using iOS 6, you can use NSUUID: NSString * uuid = [[NSUUID UUID] UUIDString]; – Eli Burke Jul 25 '13 at 12:58
-
2on 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
Swift version of Raptor's answer:
let uuid = UUID().uuidString

- 12,648
- 10
- 46
- 77

- 7,580
- 3
- 24
- 26
+ (NSString *)uniqueFileName
{
CFUUIDRef theUniqueString = CFUUIDCreate(NULL);
CFStringRef string = CFUUIDCreateString(NULL, theUniqueString);
CFRelease(theUniqueString);
return [(NSString *)string autorelease];
}
-
You really shouldn't just leave code without explanation, no matter how straightforward it is – Allison Jun 04 '14 at 17:26
-
Errr, not sure why you selected my particular reply to comment on a year and a half later XD. – Bergasms Jun 05 '14 at 01:23
-
I didn't realize it was 1.5 years old.. Oh well, it does work nicely though.. :) – Allison Jun 05 '14 at 02:54
-(NSString*) myUUID()
{
CFUUIDRef newUniqueID = CFUUIDCreate(kCFAllocatorDefault);
CFStringRef newUniqueIDString = CFUUIDCreateString(kCFAllocatorDefault, newUniqueID);
NSString *guid = (__bridge NSString *)newUniqueIDString;
CFRelease(newUniqueIDString);
CFRelease(newUniqueID);
return([guid lowercaseString]);
}

- 2,714
- 1
- 18
- 29
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

- 35
- 1
- 5
- (NSString*)generateGUID{
CFUUIDRef theUUID = CFUUIDCreate(NULL);
CFStringRef string = CFUUIDCreateString(NULL, theUUID);
CFRelease(theUUID);
return [NSString stringWithFormat:@"%@", string];
}

- 1,196
- 1
- 18
- 31
-
1Code-only answers aren't useful for the community. Please look at [answer] – JimHawkins Jan 30 '17 at 15:34
For Swift 5.0, Use this,
let uuidRef = CFUUIDCreate(nil)
let uuidStringRef = CFUUIDCreateString(nil, uuidRef)
let uuid = uuidStringRef as String? ?? ""

- 732
- 9
- 12