I'm looking for a way to retrieve the UDID on devices running iOS 6+ (Enterprise deployment only - no app store limitations).
Calling the (now private) method uniqueIdentifier
returns the 'vendorIdentifier' starting with 'FFFFFFF'. Unfortunately thats not what I want.
Any ideas? Is there another private method or something?
Thanks in advance.
I recommend you reading this article. To sum up:
uniqueIdentifier
now works likevendorIdentifier
on iOS 7+, so it's no longer usable even for Enterprise AppsvendorIdentifier
hasn't changed, but it's not recommended for Enterprise Apps because it can change when updating the App.advertisingIdentifier
API is the way to go for new Apps. It's the same for all Apps and should not change frequently, but the user can reset it in the settings page.Edit: Website udid.io obtains the real Device UDID instead of the obfuscated one if you need it for anything outside your App. If you need the UDID from within the App, see my answer above.