如何阻止在 iPad 上安装应用程序
如何在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不幸的是,这无法阻止在特定类型的设备上安装应用程序。
但是,阻止 iPad 用户使用应用程序的一种廉价而肮脏的方法是签入
appDelegate
:而不是签入
UIAlertView
Delegate:这将导致应用程序无法使用在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
:and than in the
UIAlertView
Delegate:This will cause the app to not run on the iPad.