vote up 1 vote down star

Hey,

Is there a unique ID like the mac address for each iPhone / iPod Touch?

Do I have to ask the user for permissions to transmit such a unique id?

flag

2 Answers

vote up 3 vote down check

Yes, you can get it using UIDevice's uniqueIdentifier property:

A unique device identifier is a hash value composed from various hardware identifiers such as the device’s serial number. It is guaranteed to be unique for every device but cannot publically be tied to a user account. You can use it, for example, to store high scores for a game in a central server or to control access to registered products. The unique device identifier is sometimes referred to by its abbreviation UDID.

link|flag
thanks [[UIDevice currentDevice] uniqueIdentifier] works great ! – Ghommey Sep 25 at 9:02
vote up 0 vote down

pretty sure there will be a mac address that you can programmitcally access......

DUPLICATE POST on how to do this

link|flag
is there a way to access this mac address using objC? – Ghommey Sep 25 at 9:00

Your Answer

Get an OpenID
or

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