Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm writting an application for iphone, which communicates with my server using REST. The main problem is, I need to identify user somehow. Not so long ago, we were allowed to use UDID, but now its not allowed anymore. So what should I use instead? I need some kind of identifier on iphone, so user will delete application, install it again, and he will get same id.

share|improve this question
This is a very current and hot topic. Did you search here for similar questions first? How about Google? Very hot topic... – MarkGranoff Sep 1 '11 at 16:01
Some say we should use mac-address for this situation, but I'm not sure that Apple rules allow it. – Drabuna Sep 1 '11 at 16:03
Apple won't allow it as it is as specific by device as udid is. – Zoleas Sep 1 '11 at 16:05

4 Answers

up vote 37 down vote accepted

Firstly, the UDID is only deprecated in iOS 5. That doesn't mean it's gone (yet).

Secondly, you should ask yourself if you really need such a thing. What if the user gets a new device and installs your app on that? Same user, but the UDID has changed. Meanwhile, the original user might have sold his old device so now a completely new user installs your app and you think it's a different person based on the UDID.

If you don't need the UDID, use CFUUIDCreate() to create a unique ID and safe it to the user defaults on first launch (use CFUUIDCreateString() to convert the UUID to a string first). It will survive backups and restores and even come along with the original user when they switch to a new device. It's in many ways a better option that the UDID.

If you really need a unique device identifier (it doesn't sound like you do), go for the MAC address as pointed out in Suhail's answer.

share|improve this answer
1  
CFUUIDCreate - if same user, will reinstall my app, will it remain same, or will it change? – Drabuna Sep 1 '11 at 16:09
That is pretty useful information, cheers for posting! – Suhail Patel Sep 1 '11 at 16:21
1  
@Drabuna: No, CFUUIDCreate() will create a new UUID every time you call it. – Ole Begemann Sep 1 '11 at 16:41
User defaults are backed up and survive from one install to the next though, don't they? – Tommy Sep 1 '11 at 17:48
@Tommy: true. If the UUID was saved to a backup and restored from there, it would survive. – Ole Begemann Sep 1 '11 at 17:54
show 2 more comments

I used CFUUIDCreate() to create a UUID:

+ (NSString *)GetUUID {
  CFUUIDRef theUUID = CFUUIDCreate(NULL);
  CFStringRef string = CFUUIDCreateString(NULL, theUUID);
  CFRelease(theUUID);
  return [(NSString *)string autorelease];
}

Then set the above UUID to my NSString:

NSString *UUID = [nameofclasswhereGetUUIDclassmethodresides UUID];

I then stored that UUID to the Keychain using SSKeyChain

To set the UUID with SSKeyChain:

[SSKeychain setPassword:UUID forService:@"com.yourapp.yourcompany" account:@"user"];

To Retrieve it:

NSString *retrieveuuid = [SSKeychain passwordForService:@"com.yourapp.yourcompany" account:@"user"];

When you set the UUID to the Keychain, it will persist even if the user completely uninstalls the App and then installs it again.

To make sure ALL devices have the same UUID in the Keychain.

  1. Setup your app to use iCloud.
  2. Save the UUID that is in the Keychain to NSUserDefaults as well.
  3. Pass the UUID in NSUserDefaults to the Cloud with Key-Value Data Store.
  4. On App first run, Check if the Cloud Data is available and set the UUID in the Keychain on the New Device.

You now have a Unique Identifier that is persistent and shared/synced with all devices.

share|improve this answer
+1 This is the best approach i have seen for unique uuid's per user and not devices only! thx a lot. – d.ennis Jun 6 '12 at 10:39
I dont quite get it, could you help me understand it better? Would anyone be open to chat with me on real-time in order for me to understand this? I would greatly appreciate it – Sismetic Jul 4 '12 at 19:35
1  
The use of iCloud adds complexity as iCloud data can be delayed. That means an existing user can get a new UUID at first, and then the existing iCloud UUID can appear after a while. Then you have to implement a way to merge the new and old account. I'm using a similar approach, but instead of storing the UUID to iCloud, I'm storing the user id from the server. Then if iCloud updates with an existing user id, I send it to the server to merge the current account with the one from iCloud. I let the two different devices have their different "UDID" but both connected to the same account. – thejaz Feb 14 at 17:41
Very nice and easy solution. Works like a charm. Thanks – Stefan Arn Feb 20 at 22:01

There is a nice alternative on Github which generates a Unique Identifier based on a combination of Mac Address and the Bundle Identifier which works pretty well: UIDevice-with-UniqueIdentifier-for-iOS-5

share|improve this answer
Thanks Patel Ji, this is better options I guess, Coz there may be some scenarios where we want the perticular App allways emit the same UIID for that Device. – infiniteLoop Jul 21 '12 at 10:59
The MAC address does not have the uniqueness property required to make it a suitable replacement for the UDID. See my answer here: stackoverflow.com/a/16230057/112191 – james woodyatt Apr 26 at 6:43

This is a hot topic indeed. I have an app that I have to migrate because it used the UDID to name an XML file to be stored on a server. Then the device with the app would connect to the server and download its specific udid.xml and parse it to work.

Ive been thinking that indeed if the user moves to a new device, the app will break. So I really should use something else. The thing is, I don't use a database for the data. The data is simply stored in an xml format, one xml file per device stored on the cloud.

Im thinking the best thing would be to have the user fill out the data on the web, have php create a token on the fly which will not be stored in a database but rather sent to the user. The user can then input the token on the target device and retrieve the xml in question.

That would be my solution to the problem. Not sure how to implement the whole 'creating unique tokens' thing though.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.