Swift & OC 获取 设备UUID

swift:

let User_UIID = UIDevice.currentDevice().identifierForVendor?.UUIDString

OC:

NSString * identifierForVendor = [[UIDevice currentDevice].identifierForVendor UUIDString];

同理,还可以获取设备其他一些信息,例如,设备名称,版本号等

Swift & OC 获取 设备UUID_第1张图片


Swift & OC 获取 设备UUID_第2张图片

你可能感兴趣的:(Swift & OC 获取 设备UUID)