iOS 5 - 不再有 UDID - 即使应用程序被删除,如何保留一些关键数据来识别用户
我刚刚在博客上读到,UDID 将无法在 iOS 5 中继续存在。我将其用作标识符,与我自己生成的应用程序 ID 相结合。如果没有该 UDID,我将只拥有应用程序标识符,但由于它暂时存储在 userDefaukts 中,因此如果卸载应用程序,它就会被删除。
即使应用程序从 iPhone 中删除,我该如何保证其安全?我必须实现这一目标,以确保我至少拥有一个稳定的标识符,即使它不是我用来识别用户的唯一标识符。
I've just read on a blog that the UDID will not survive iOS 5. I use it as an identifier combined to an app ID I generate myself. Without that UDID, I will just have the App Identifier but as it is stored in the userDefaukts for the moment, it is deleted if the app is uninstalled.
How may I do to keep it safe even if the app is deleted from the iPhone ? I have to achieve this to ensure that I have at least one stable identifier, even if it's not the sole one I use to identify the user.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看看这个,它是专门针对这个问题设计的:
https://github.com/gekitz/UIDevice-with-UniqueIdentifier-for -iOS-5
Check this out, its designed specifically for this problem:
https://github.com/gekitz/UIDevice-with-UniqueIdentifier-for-iOS-5