How do i get IPhone IMEI?
UIDevice *myDevice = [UIDevice currentDevice];
NSString *identifier = myDevice.uniqueIdentifier;
This is the code i tried but isn't working.
How do i get IPhone IMEI?
UIDevice *myDevice = [UIDevice currentDevice];
NSString *identifier = myDevice.uniqueIdentifier;
This is the code i tried but isn't working.
Since iOS 7 Apple does not allow you to identify a device using IMEI any more.
You may have to use UDID instead.