Archive

Posts Tagged ‘guid’

Objective C Get iPhone Device GUID

June 25th, 2009 2 comments

Following Xcode reveals you the device id

UIDevice *device = [UIDevice currentDevice];
NSString *uniqueIdentifier = [device uniqueIdentifier];
/*[device release];*/
NSLog(@”Device GUID: %@”, uniqueIdentifier);

Categories: iPhone SDK Tags: , , ,