每部 iPhone / iPod Touch 是否都有唯一的 ID?
每台 iPhone / iPod Touch 是否都有像 Mac 地址一样的唯一 ID?
我是否必须请求用户授予传输这样一个唯一 ID 的权限?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
每台 iPhone / iPod Touch 是否都有像 Mac 地址一样的唯一 ID?
我是否必须请求用户授予传输这样一个唯一 ID 的权限?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
是的,
您可以使用 UIDevice 的 uniqueIdentifier 属性来获取它:编辑: uniqueIdentifier 属性在 iOS5 中已弃用,您现在不应使用它。作为替代方案,您可以生成自己的唯一 ID(例如,查看此问题)。
另外,在 iOS6 中,Apple 添加了 2 个新方法来获取唯一标识符(作为 NSUUID 类):
UIDevice -identifierForVendor:
ASIdentifierManager -advertisingIdentifier:
Yes,
you can get it using UIDevice's uniqueIdentifier property:Edit: uniqueIdentifier property is deprecated in iOS5 and you should not use it now. As an alternative you can generate your own unique ID (for example check this questions).
Also in iOS6 Apple added 2 new methods to get unique identifier (as an instance of NSUUID class):
UIDevice -identifierForVendor:
ASIdentifierManager -advertisingIdentifier: