如何阻止在 iPad 上安装应用程序

发布于 2024-11-16 21:06:24 字数 79 浏览 0 评论 0原文

如何在 Xcode 中构建应用程序以防止其安装在 iPad 上?我在这里看到的相关问题的答案似乎是指在 Xcode 4 中不再适用的设置和过程。

How do I build an app in Xcode to prevent it's installation on an iPad? The answers to related questions I see here seem to refer to settings and procedures that no longer apply in Xcode 4.

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

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

发布评论

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

评论(1

寂寞花火° 2024-11-23 21:06:24

不幸的是,这无法阻止在特定类型的设备上安装应用程序。

但是,阻止 iPad 用户使用应用程序的一种廉价而肮脏的方法是签入 appDelegate

if(UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad) {
//UIAlertView this app will not run on iPad
}

而不是签入 UIAlertView Delegate:

exit();

这将导致应用程序无法使用在iPad上运行。

Unfortunately this it is not possible to prevent an installation of an app on a certain type of device.

But a cheap and dirty way to prevent iPad users from using the app would be to check in the appDelegate:

if(UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad) {
//UIAlertView this app will not run on iPad
}

and than in the UIAlertView Delegate:

exit();

This will cause the app to not run on the iPad.

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