HI guys,
Here is some code
NSString *uid = [[UIDevice currentDevice] uniqueIdentifier];
gameUniqueID = [uid hash];
NSLog(@"gameUniqueID %d",gameUniqueID);
NSLog(@"&gameUniqueID %d",&gameUniqueID);
The output is
gameUniqueID -1386422508
&gameUniqueID 1386832
Whats going on here? I though they would be the same.