我的文件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";
}
}
并将我的编辑Targeted Device Family
为iPhone/iPad
.
但由于某种原因,它不起作用。当我把它放在我的 iPad 上时,它仍然将应用程序置于兼容模式。我该怎么办?