Skip to content

Instantly share code, notes, and snippets.

@piaoapiao
Created June 26, 2012 08:27
Show Gist options
  • Save piaoapiao/2994377 to your computer and use it in GitHub Desktop.
Save piaoapiao/2994377 to your computer and use it in GitHub Desktop.
deviceUID
UIDevice *device = [UIDevice currentDevice];//创建设备对象
NSString *deviceUID = [[NSString alloc] initWithString:[device uniqueIdentifier]];
NSLog(@"%@",deviceUID); // 输出设备id
CFUUIDRef udid = CFUUIDCreate(NULL);
NSString *udidString = (NSString *) CFUUIDCreateString(NULL, udid);
NSLog(@"%@",udidString);
http://www.cocoachina.com/appstore/top/2012/0326/4092.html
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment