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
|
|
From the Apple Documentation:
|
||||
|
|
|
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)
If you need unique identifier you should rather use :
or if it is connected with some kind of advertisement then:
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:
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 |
|||||
|
|
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. |
|||||
|
|
you can find unique device identifier as
|
|||
|
|
It works 100%, even on simulators too... |
||||
|
|
