2

你能帮我解决以下问题吗

在 iOS 6.x 上,我使用gethostuuid系统调用来获取 iDevice 的唯一 ID,我只是想知道如果我的应用程序提交给 iOS 7.x,它会被调用这个 api (gethostuuid) 拒绝吗?

有没有办法在 iOS 7 上获取唯一 ID(使用 C 语言)而不是调用 gethostuuid?

谢谢。

4

2 回答 2

0

如果您想获取您的应用程序特定的唯一键

为什么不试试这个

  UIDevice *myDevice=[UIDevice currentDevice];
  NSString *UUID = [[myDevice identifierForVendor] UUIDString];
于 2013-09-30T11:08:16.283 回答
0

KeyChainItemWrapper.h 可以帮助您查看: https ://developer.apple.com/library/ios/samplecode/GenericKeychain/Listings/Classes_KeychainItemWrapper_m.html

于 2013-10-08T02:53:23.040 回答