How to get device UDID in programatically in iOS7.[[UIDevice currentDevice] uniqueIdentifier] I was used this code This is deprecated iOS7. how to get the devic
[[UIDevice currentDevice] uniqueIdentifier]
Swift 2.2+ proper way to get UUID:
if let UUID = UIDevice.currentDevice().identifierForVendor { print("UUID: \(UUID.UUIDString)") }