gpt4 book ai didi

ios - 什么是iOS 7中UDID或UUID的副本

转载 作者:行者123 更新时间:2023-12-01 19:05:55 25 4
gpt4 key购买 nike

问题是一旦我生成了UUID,它对我来说就起作用了。但是,如果我/用户删除应用程序,而不是UUID就像我之前生成的一样。如果我们使用uuid作为标识符,则这里没有唯一性。请帮助我解决此问题。如果重新安装应用程序,如何获得相同的uuid或任何字符串。
提前致谢..

我正在使用这种方法:

NSString *udid;

if (SYSTEM_VERSION_GREATER_THAN_OR_EQUAL_TO(@"6.0"))
udid = [UIDevice currentDevice].identifierForVendor.UUIDString;
else
udid = [UIDevice currentDevice].uniqueIdentifier;

最佳答案

首先,在NSHiplster http://nshipster.com/uuid-udid-unique-identifier/上检查这篇非常有用的文章

这应该为您工作:

NSString *UUIDString = nil;
if ([[UIDevice currentDevice].systemVersion floatValue] >= 6.0) {
UUIDString = [[NSUUID UUID] UUIDString];
} else {
CFUUIDRef UUID = CFUUIDCreate(NULL);
UUIDString = CFBridgingRelease(CFUUIDCreateString(NULL, UUID));
}

关于ios - 什么是iOS 7中UDID或UUID的副本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19675805/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com