试图让我的应用程序通用

时间:2011-04-23 02:10:46

标签: iphone ios ipad cordova universal

我使用PhoneGap框架在www文件夹中有两个HTML文件。 iPhone / iPod one(/mobile/index.html)和iPad one(/index.html)。所以我在AppDelegate.m

使用此代码
+ (NSString*) startPage
{
    if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad) {
        return @"index.html";
    } else {
        return @"mobile/index.html";
    }
}

并将我的Targeted Device Family编辑为iPhone/iPad

但由于某种原因它不起作用。当我把它放在我的iPad上时,它仍然将应用程序置于兼容模式。我该怎么办?

1 个答案:

答案 0 :(得分:3)

尝试以下方法:

  • 选择目标。
  • 点击“项目”菜单&选择“升级iPad的当前目标。”
  • 在出现的对话框中,您有两个选择。选择“一个通用应用程序”。

不确定这是你错过的。但是,如果你还没有完成它,它就不会受到伤害。