iphone - 检测模拟器的类型
如何检测我使用的是 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你试过
[[[UIDevice currentDevice] model] hasPrefix:@"iPad"]
did you tried
[[[UIDevice currentDevice] model] hasPrefix: @"iPad"]