普遍适用
如何制作适用于 iphone 和 ipad 的通用应用程序。我们如何检测设备是 iPhone 还是 iPad?
How to make universal app for iphone and ipad. How we detect the device whether it is for iPhone or iPad?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
最简单的方法是使用
UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad
和UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPhone
。The easiest way would be using
UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad
andUI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPhone
.在 Xcode 3 中
在 Xcode 中选择您的目标,右键单击并使用“升级 iPad 的当前目标...”命令。
在 Xcode 4 中
单击项目并转到目标。在“摘要”选项卡中,将“设备”更改为“通用”。
我用来
检测iPad。
in Xcode 3
select your target in Xcode, right-click and use the “Upgrade Current Target for iPad…” command.
in Xcode 4
click on the project and go to the target. In Summary tab, change Device to Universal.
I used
for detecting iPad.
就我个人而言,我在我的 appdelegate 中使用了这种方法
Personnally, I used this method in my appdelegate