Nat*_*pos 5 iphone universal ipad ios cordova
我www使用PhoneGap框架在我的文件夹上有两个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";
}
}
Run Code Online (Sandbox Code Playgroud)
编辑我Targeted Device Family的iPhone/iPad.
但由于某种原因它不起作用.当我把它放在我的iPad上时,它仍然将应用程序置于兼容模式.我该怎么办?
请尝试以下操作:
不确定这就是你所缺少的。但是,如果您还没有这样做,那也不会有什么坏处。