尝试使我的应用程序通用
我的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
请尝试以下操作:
不确定这就是你所缺少的。但是,如果您还没有这样做,那也不会有什么坏处。
Try the following:
Not sure that's what you're missing. But, if you haven't done it yet, it couldn't hurt.