]>
Commit | Line | Data |
---|---|---|
1 | #import <Foundation/Foundation.h> | |
2 | #import <UIKit/UIDevice.h> | |
3 | #include <stdio.h> | |
4 | ||
5 | int main(int argc, char *argv[]) { | |
6 | NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init]; | |
7 | ||
8 | printf("%s\n", [[[UIDevice currentDevice] uniqueIdentifier] UTF8String]); | |
9 | ||
10 | [pool release]; | |
11 | return 0; | |
12 | } |