Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there any way to get the iOS device identifier in iOS SDK? I would like to access the identifier which is presented by the Xcode in Organizer - Devices section, something like: 21xb1fxef5x2052xec31x3xd3x48ex5e437xe593

share|improve this question
Why do you want to get that identifier? – Nick Bull Dec 20 '12 at 12:41
2  
I need to uniquely identify the device – aumanets Dec 20 '12 at 12:49

5 Answers

up vote 3 down vote accepted

From the Apple Documentation:

An alphanumeric string unique to each device based on various hardware details. (read-only) (Deprecated in iOS 5.0. Use the identifierForVendor property of this class or the advertisingIdentifier property of the ASIdentifierManager class instead, as appropriate, or use the UUID method of the NSUUID class to create a UUID and write it to the user defaults database.)

share|improve this answer

It looks like you still can access UDID under iOS 6, but it is deprecated since iOS 5.0 and you shouldn't use it (anyway you'll get warning about that)

[UIDevice currentDevice].uniqueIdentifier

If you need unique identifier you should rather use :

[UIDevice currentDevice].identifierForVendor

or if it is connected with some kind of advertisement then:

// from  AdSupport.framework
[ASIdentifierManager sharedManager].advertisingIdentifier

However those two new properties are available only under iOS >= 6.0, also advertisingIdentifier is not really unique (I'm getting many duplicates from that).

I suppose that you can do something like that if you wan't to support also iOS < 6:

UIDevice *device = [UIDevice currentDevice];
NSString *ident = nil;
if ([device respondsToSelector:SEL(identifierForVendor)]) {
    ident = [device.identifierForVendor UUIDString];
} else {
    ident = device.uniqueIdentifier;
}

but I'm not sure how apple will respond to that during review.

You can also use some 3rd party solution like secureUDID or openUDID.


Update

One more possibility is to use MAC address as a base for unique hash, for example you can use code from ODIN1 - source is here

share|improve this answer
The property is Deprecated in iOS 5.0 – aumanets Dec 20 '12 at 12:48
yeah, sorry, at first I wrote uniqueIdentifier instead of identifierForVendor, but anyway I think it was quite obvious that something is wrong when I wrote that you shouldn't use uniqueIdentifier and in second line that you should use it ;) – lupatus Dec 20 '12 at 13:40

Yes there is.

[[UIDevice currentDevice] uniqueIdentifier]

EDIT: However this is deprecated in iOS 5. This identifier should no longer be used in iOS 5. Read this SO post for more details.

share|improve this answer
3  
This is deprecated in iOS 5 and applications using this will not be allowed into the App Store. – Tom van der Woerdt Dec 20 '12 at 12:46

you can find unique device identifier as

[[UIDevice currentDevice] uniqueIdentifier]
share|improve this answer
+ (NSString *)uuid
{
    NSString *uuidString = nil;
    CFUUIDRef uuid = CFUUIDCreate(NULL);
    if (uuid) {
        uuidString = (NSString *)CFUUIDCreateString(NULL, uuid);
        CFRelease(uuid);
    }
    return [uuidString autorelease];
}

It works 100%, even on simulators too...

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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