How to get the UDID in iOS 6 and iOS 7

25,951

Solution 1

UDID is no longer available in iOS 6+ due to security / privacy reasons. Instead, use identifierForVendor or advertisingIdentifier.

identifierForVendor:

An alphanumeric string that uniquely identifies a device to the app’s vendor. (read-only)

The value of this property is the same for apps that come from the same vendor running on the same device. A different value is returned for apps on the same device that come from different vendors, and for apps on different devices regardless of vendor.

advertisingIdentifier:

An alphanumeric string unique to each device, used only for serving advertisements. (read-only)

Unlike the identifierForVendor property of UIDevice, the same value is returned to all vendors. This identifier may change—for example, if the user erases the device—so you should not cache it.

This post explains it well.

Also, see Apple's documentation for the identifierForVendor and advertisingIdentifier.

Solution 2

Check out OpenUDID:

OpenUDID is a drop-in replacement for the deprecated uniqueIdentifier property of the UIDevice class on iOS (a.k.a. UDID) and otherwise is an industry-friendly equivalent for iOS and Android, and most recently Windows C# and Silverlight (see links above).

Edit: Make sure since May 1st 2013 for iOS 6 to use the this Branch until the Main is updated:

Share:
25,951
iDia
Author by

iDia

Updated on July 05, 2022

Comments

  • iDia
    iDia almost 2 years

    I want to get the device id and send it into a web service. How can I get the UDID in iOS 6

    Thanks