如何在Xcode中构建应用程序以防止它在iPad上安装?我在这里看到的相关问题的答案似乎是指Xcode 4中不再适用的设置和程序。
答案 0 :(得分:2)
不幸的是,无法阻止在某种类型的设备上安装应用程序。
但阻止iPad用户使用该应用的便宜又脏的方法是检查appDelegate
:
if(UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad) {
//UIAlertView this app will not run on iPad
}
而不是UIAlertView
代表:
exit();
这会导致应用无法在iPad上运行。