我使用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上时,它仍然将应用程序置于兼容模式。我该怎么办?
答案 0 :(得分:3)
尝试以下方法:
不确定这是你错过的。但是,如果你还没有完成它,它就不会受到伤害。