Why not check for the Unique ID of the phone using the following...
Code:
UIDevice *myCurrentDevice = [UIDevice currentDevice];
NSLog(@"%@ is an %@ running %@ The Unique ID is %@", [myCurrentDevice name],
[myCurrentDevice model],
[myCurrentDevice systemVersion],
[myCurrentDevice uniqueIdentifier]);