tags:

views:

246

answers:

1

I have seen programs that do this, like the very useful 'BetaHelper' application.

How do I get the Unique Device Identifier of the iPod of iPhone that my application is running on?

+6  A: 

[[UIDevice currentDevice] uniqueIdentifier]

Dutchie432