iphone - 检测模拟器的类型

发布于 2024-10-22 19:07:32 字数 143 浏览 1 评论 0原文

如何检测我使用的是 iPhone 模拟器还是 iPad 模拟器。 我正在使用一些第三方库,无论我使用 ipad 还是 iphone,我都必须向其传递一个参数。为了测试该应用程序,我想以编程方式检测我是否使用 iphone 模拟器或 ipad 模拟器。有什么方法可以识别吗?

how can I detect whether I'm using iphone simulator or ipad simulator.
I'm using some 3rd party library to which I've to pass a parameter whether i'm using ipad or iphone. in order to test the app, i want to programatically detect whether i'm using iphone simulator or ipad simulator. is there any way to identify it?

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

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

发布评论

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

评论(2

静若繁花 2024-10-29 19:07:32
if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad) {
  // iPad code
}
else {
  // iPhone code
}
if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad) {
  // iPad code
}
else {
  // iPhone code
}
眼波传意 2024-10-29 19:07:32

你试过[[[UIDevice currentDevice] model] hasPrefix:@"iPad"]

did you tried [[[UIDevice currentDevice] model] hasPrefix: @"iPad"]

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