如何在iphone中编程查找UUID?

发布于 2024-11-07 14:58:06 字数 89 浏览 3 评论 0原文

我想通过编程获取iphone的UUID并将其存储在我的数据库中。

我可以使用UUID来检查应用程序是否被购买吗?

我怎样才能得到它?

I want to fetch UUID of iphone by programming and also want to store it in my database.

Can I use UUID to check whether the app is purchased or not ?

How can I get it ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

各自安好 2024-11-14 14:58:07
NSString *udid = [[UIDevice currentDevice] uniqueIdentifier];

在文档中搜索“UDID”花了五秒钟才找到。

不可以,您无法从 UDID 收集信息。

有关 UDID 的更多信息,请查看 UIDevice 文档。一般来说,单独的 UDID 应该很少使用,因为设备可以传递给具有不同 iTunes 帐户的不同人。

NSString *udid = [[UIDevice currentDevice] uniqueIdentifier];

Took five seconds to find with a search for "UDID" in the docs.

No, you cannot gather information from the UDID.

Check the UIDevice docs for more information about the UDID. In general, the UDID alone should be used rarely, as devices can be passed on to different persons with different iTunes accounts.

我家小可爱 2024-11-14 14:58:07

试试这个代码:

UIDevice *device = [UIDevice currentDevice];
NSString *uniqueIdentifier = [device uniqueIdentifier];

try this code:

UIDevice *device = [UIDevice currentDevice];
NSString *uniqueIdentifier = [device uniqueIdentifier];
软糖 2024-11-14 14:58:07

使用如下

   NSString *uuid = [[UIDevice currentDevice] uniqueIdentifier];

Use below

   NSString *uuid = [[UIDevice currentDevice] uniqueIdentifier];
邮友 2024-11-14 14:58:07
NSString * UDID = [[UIDevice currentDevice] uniqueIdentifier];
UDID = [UDID stringByReplacingOccurrencesOfString:@"-" withString:@""];
NSString * UDID = [[UIDevice currentDevice] uniqueIdentifier];
UDID = [UDID stringByReplacingOccurrencesOfString:@"-" withString:@""];
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文