Reputation: 8576
I'm wondering if anyone knows of any methods for retrieving device information from just a device's UDID (iOS). For example, if a client gives you a device UDID, is it at all possible to find out the device model?
Thanks!
Upvotes: 2
Views: 7231
Reputation: 5533
Yes. Apple holds such information of any iOS device ever sold. They probably even know the original owner and the current OS version installed on the device since the don't allow installing without their on-line approval.
If you are an admin of an Apple Development Program (or have an individual developer account), you can register the UDID for development and get some information for the given UDID (such as platform, device class and model).
You can even do it programatically!
Use wisely...
Upvotes: 2
Reputation: 5881
No. The UDID is an SHA1 hash of a few components, and for all intents and purpose, impossible to reverse.
http://theiphonewiki.com/wiki/UDID
You can get the information you need from [UIDevice currentDevice]
Upvotes: 9