供應商的識別符號
Version >= iOS 6
在一行中,我們可以獲得如下的 UUID:
迅速
let UDIDString = UIDevice.currentDevice().identifierForVendor?.UUIDString
Objective-C
NSString *UDIDString = [[[UIDevice currentDevice] identifierForVendor] UUIDString];
identifierForVendor
是一個唯一識別符號,對於單個裝置上的單個供應商的每個應用程式保持相同,除非從該裝置中刪除所有供應商的應用程式。請參閱 Apple 關於此 UUID
何時更改的文件 。