如何检测主机设备是iPhone还是iPad?

发布于 2024-10-05 09:15:54 字数 309 浏览 5 评论 0原文

可能的重复:
以编程方式检测 iPad/iPhone 硬件的最佳方法

我正在准备我想在 iPhone 和 iPad 上使用它的应用程序。

如何检测当前主机设备是iPhone还是iPad?

基于此我想对用户界面进行更改

Possible Duplicate:
Best way to programmatically detect iPad/iPhone hardware

I am preparing an app where in I want to use it on iPhone as well as iPad.

How to detect whether the current host device is iPhone or iPad?

Based on this I want to make changes to the User Interface

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

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

发布评论

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

评论(2

盛夏已如深秋| 2024-10-12 09:15:54

有很多方法可以找到应用程序在哪个设备上运行。

[[[UIDevice currentDevice] systemVersion] floatValue];

通过此代码我们可以获取当前设备的版本,以便我们可以检查设备是否是iPhone或iPad。

if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad)
{
    // iPad-specific interface here
}
else
{
    // iPhone and iPod touch interface here
}

There are so many ways to find in which device the App is running.

[[[UIDevice currentDevice] systemVersion] floatValue];

by using this code we can get current device version, so that we can check whether the device is iPhone of iPad.

if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad)
{
    // iPad-specific interface here
}
else
{
    // iPhone and iPod touch interface here
}
故人的歌 2024-10-12 09:15:54

这是在运行时检测设备类型的“官方”方法:

if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad)
{
   // The device is an iPad running iPhone 3.2 or later.
}
else
{
  // The device is an iPhone or iPod touch.
}

This is the 'official' way to detect the device type at runtime:

if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad)
{
   // The device is an iPad running iPhone 3.2 or later.
}
else
{
  // The device is an iPhone or iPod touch.
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文