尝试使我的应用程序通用

发布于 2024-11-02 16:41:39 字数 513 浏览 1 评论 0原文

我的 www 文件夹中有两个使用 PhoneGap 框架的 HTML 文件。 iPhone/iPod 一个 (/mobile/index.html) 和 iPad 一个 (/index.html)。因此,我在我的 AppDelegate.m 中使用此代码:

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

并将我的 目标设备系列 编辑为 iPhone/iPad

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

I have two HTML files on my www folder using the PhoneGap framework. The iPhone/iPod one(/mobile/index.html) and the iPad one(/index.html). So I'm using this code at my AppDelegate.m:

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

And edited my Targeted Device Family to iPhone/iPad.

But for some reason it won't work. When I put it on my iPad it still put the application on compatibility mode. What should I do?

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

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

发布评论

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

评论(1

给妤﹃绝世温柔 2024-11-09 16:41:39

请尝试以下操作:

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

不确定这就是你所缺少的。但是,如果您还没有这样做,那也不会有什么坏处。

Try the following:

  • Select your target.
  • Click on the Project menu & choose "Upgrade Current Target for iPad."
  • In the dialog box that comes up, you're given two choices. Select "One Universal Application."

Not sure that's what you're missing. But, if you haven't done it yet, it couldn't hurt.

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