Mac App Store 应用和 identifierForVendor
Mac App Store App and identifierForVendor
要在 iOS 6 及更高版本中唯一标识应用程序,请使用此代码:
UIDevice.currentDevice().identifierForVendor
是否有 Mac OSX 的等效项?
MAC 没有任何等同于 iOS 的 identifierForVendor 或广告 ID 唉。
为了记录和搜索此事的用户:
关于验证购买收据的 Apple 文档提供了获取 Mac 的 GUID 的实现提示,作为 identifierForVendor 的等效过程:
Get the GUID in macOS
它是MAC基于地址的,但是是Apple购买哈希控制的选择。
要在 iOS 6 及更高版本中唯一标识应用程序,请使用此代码:
UIDevice.currentDevice().identifierForVendor
是否有 Mac OSX 的等效项?
MAC 没有任何等同于 iOS 的 identifierForVendor 或广告 ID 唉。
为了记录和搜索此事的用户: 关于验证购买收据的 Apple 文档提供了获取 Mac 的 GUID 的实现提示,作为 identifierForVendor 的等效过程: Get the GUID in macOS
它是MAC基于地址的,但是是Apple购买哈希控制的选择。