Question

In my app, I want UDID of all the devices in which my application is installed. Can i get this ?

Is there any way to get UDIDs ?

Thanks for any help.

Was it helpful?

Solution

I am pretty sure you can't get the UDID from each device your app is installed on. That would open up possibilities to privacy breach - I am sure. You can only get the UDID of the device you are holding in your hand, or if someone sends you their UDID. However in iOS 6 Apple is moving away from the UDID system.

OTHER TIPS

You can get UIID by NSLog(@"%@",[[UIDevice currentDevice] uniqueIdentifier]);

I want UDID of all the devices in which my application is installed.

You can get UIIDs by web service. You need to write a web service to send UIID to your server.

Use of UDID is deprecated, and replaced by UUID.

If you require to collect this, your app will need to make a HTTP connection to a server and record this information (usually in a database).

It depends on what you mean. Do you mean the old UDID for iOS devices, or just a unique identifier for each device?

If it's the latter, see answers to this question.

As I posted in my answer, there is a new NSUUID method you can use.

After you app reads this, of course, you would probably want to post it to your web server for storage.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top