我基于cocos2d-box2d创建了一个新项目,并且在两个文件中始终有4条警告,其中一个是CLScoreServerPost.m,代码下面是警告

[self addValue:[[UIDevice currentDevice] uniqueIdentifier] key:@"cc_device_id"];


另一个是CLScoreServerRequest.m,代码后面有警告

device = [[UIDevice currentDevice] uniqueIdentifier];


它们都显示相同的警告:不建议使用“ uniqueIdentifier”

所以我该怎么做?非常感谢

最佳答案

您可以使用例如OpenUDID https://github.com/ylechelle/OpenUDID

正如LearnCocos2D在评论中告诉的那样,还有一个关于SOF的主题:UIDevice uniqueIdentifier Deprecated - What To Do Now?

10-06 08:56