关于UIWebview和通用应用程序的问题

发布于 2024-11-14 22:02:39 字数 88 浏览 3 评论 0原文

我有一个通用应用程序,我的问题是,是否可以根据 iDevice 在我的 UIWebview 中加载两个不同的 html 文件。

感谢您的任何答复。

I have an Universal Application and my question is, if it is possible to load two different html files in my UIWebview depending on the iDevice.

Thanks for any answers.

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

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

发布评论

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

评论(2

心如狂蝶 2024-11-21 22:02:39

你可以用这个...

if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad)//if device is ipad
{

}
else   //if device is iPhone
{


}

you can use this...

if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad)//if device is ipad
{

}
else   //if device is iPhone
{


}
无边思念无边月 2024-11-21 22:02:39

您可以使用 UIDevice 类。

UIDevice *device = [UIDevice currentDevice];    

if ([device.model isEqualToString:@"iPad"])
{

}
else
{
}

You can use UIDevice class.

UIDevice *device = [UIDevice currentDevice];    

if ([device.model isEqualToString:@"iPad"])
{

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