iPhone sdk - 所有者姓名?

发布于 2024-08-02 15:31:33 字数 144 浏览 8 评论 0原文

iPhone sdk 中有没有办法获取拥有手机的联系人的姓名? 我发现我的应用程序已被破解,我想更新一个版本,检查它是否是破解版本,然后显示以下内容:

Hello(人名)。我发现您正在使用(应用程序名称)的破解版。如果您喜欢这个应用程序,请购买它来支持我。

Is there a way in the iPhone sdk to get the name of the contact who own's the phone?
I see that my app has been cracked, and I would like to update a release which checks to see if it a cracked version and then display the following:

Hello (Persons name). I see you are using a cracked version of (Application Name). If you like this application, please support the me by purchasing it.

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

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

发布评论

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

评论(3

大姐,你呐 2024-08-09 15:31:33

就像前面提到的海报一样,您无法获取用户的姓名。但是,您可以通过以下方式获取电话号码

[[NSUserDefaults standardUserDefaults] objectForKey: @"SBFormattedPhoneNumber"]

取自 这里

另外关于复制保护:iPhone 应用程序复制保护的问题是 Apple 不提供分发格式或任何远程相关内容的公共文档。因此,如果你的检查基于那些没有记录的事情,那么你真的是在雷区上玩杂耍。最终苹果应该真正修复这个损坏的系统。

Like previous poster mentioned, you can't get the user's name. You can, however, get the phone number by doing

[[NSUserDefaults standardUserDefaults] objectForKey: @"SBFormattedPhoneNumber"]

Taken from here

Also regarding copy-protection: problem with iPhone app copy-protection is that Apple does not provide public docs for distribution format or anything even remotely related. So if you base your checks around those undocumented things, you are really juggling on a mine field. Ultimately Apple should really fix this broken system.

蓝颜夕 2024-08-09 15:31:33

这是不可用的,因为这是一个隐私问题。

(我知道,考虑到您的用户刚刚破解了您的应用程序,这有一些讽刺意味,但我离题了......)

有很多关于反破解措施的讨论。 ArsTechnica 有一个关于一位开发人员的故事。尝试 Google 或 Apple 的开发论坛 (主题)。

That's not available because that's a privacy issue.

(I know, there's some irony there, considering your user just cracked your app, but I digress...)

There's lots of discussion about anti-cracking measures. ArsTechnica has a story about one developer. Try Google or Apple's Dev Forums (thread).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文