供应商的标识符
Version >= iOS 6
在一行中,我们可以获得如下的 UUID:
迅速
let UDIDString = UIDevice.currentDevice().identifierForVendor?.UUIDString
Objective-C
NSString *UDIDString = [[[UIDevice currentDevice] identifierForVendor] UUIDString];
identifierForVendor
是一个唯一标识符,对于单个设备上的单个供应商的每个应用程序保持相同,除非从该设备中删除所有供应商的应用程序。请参阅 Apple 关于此 UUID
何时更改的文档 。