iphone – 检测设备类型

iphone – 检测设备类型,第1张

概述在我的应用程序(用Objective-C编写)中,如何检测设备是iPhone,iPad还是iPhone5? if([[UIDevice currentDevice]userInterfaceIdiom] == UIUserInterfaceIdiomPhone) { // [iphone] or [itouch]} else { // [ipad]} 您可以轻松地检测iphon 在我的应用程序(用Objective-C编写)中,如何检测设备是iPhone,iPad还是iPhone5?

if([[UIDevice currentDevice]userInterfaceIdiom] == UIUserInterfaceIdiomPhone) {    // [iphone] or [itouch]} else {    // [ipad]}
解决方法 您可以轻松地检测iphone,iphone5和iPad的条件(但不是itouch!itouch被视为是这个代码的iPhone!): –

if([[UIDevice currentDevice]userInterfaceIdiom]==UIUserInterfaceIdiomPhone) {     if ([[UIScreen mainScreen] bounds].size.height == 568)     {     }     else     {         //iphone 3.5 inch screen     } } else {        //[ipad] }

UPDATE

您还可以使用MACRO或定义Variable来检查iPhone5,iPhone4或iPad,如Bellow:

#define isiPhone5  ([[UIScreen mainScreen] bounds].size.height == 568)?TRUE:FALSE#define isiPhone  (UI_USER_INTERFACE_IdioM() == 0)?TRUE:FALSE

例:-

if(isiPhone)     {         if (isiPhone5)         {         }         else         {             //iphone 3.5 inch screen         }     }     else     {            //[ipad]     }
总结

以上是内存溢出为你收集整理的iphone – 检测设备类型全部内容,希望文章能够帮你解决iphone – 检测设备类型所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1057659.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-25
下一篇 2022-05-25

发表评论

登录后才能评论

评论列表(0条)

保存