0

I have created the application for getting the UDID few moths ago, its working fine for iOS 6 but iOS 7.0 is not provide, for getting the UDID from the iOS7.0 device i saw some mobileconfig kind of thing will work. But I am not getting right to do this.

thanks in Advance.

Sumeet Mourya
  • 410
  • 1
  • 7
  • 21
  • This has now been removed from iOS7. There is no way to do it without private APIs and Apple will reject the app if you do. – Fogmeister Jan 28 '14 at 10:05
  • use vender identifier. and here is your link http://stackoverflow.com/questions/6993325/uidevice-uniqueidentifier-deprecated-what-to-do-now . P.S. Read this also http://meta.stackexchange.com/a/182380/163149 – rptwsthi Jan 28 '14 at 10:28

3 Answers3

1

See this for an alternative. UDID is now deprecated and will result in rejection.

An alternative to the device UDID - preparing ourselves

Community
  • 1
  • 1
CW0007007
  • 5,474
  • 3
  • 24
  • 30
  • I have found some link those are talking about this but I am not getting any idea from them. [http://stackoverflow.com/questions/5781314/getting-a-device-udid-from-mobileconfig?rq=1] – Sumeet Mourya Jan 28 '14 at 10:26
0

UDID is no longer available in iOS 6+ due to security / privacy reasons.

Alternative solution: see this link.

Community
  • 1
  • 1
Mutawe
  • 6,399
  • 3
  • 43
  • 88
0

Try This:

[[[UIDevice currentDevice] identifierForVendor] UUIDString];
rptwsthi
  • 9,855
  • 10
  • 65
  • 102
user3106644
  • 103
  • 7
  • This is deprecated for iOS 7.0 I need something like [http://get.udid.io] what they have done with I want to do like that … – Sumeet Mourya Jan 28 '14 at 10:34