当前位置: 代码迷 >> Iphone >> 判断iPhone跟iPad 判断设备版本
  详细解决方案

判断iPhone跟iPad 判断设备版本

热度:87   发布时间:2016-04-25 05:28:43.0
判断iPhone和iPad 判断设备版本

 

//判断iPhone和iPad

#define IS_IPHONE (!IS_IPAD)

#define IS_IPAD (UI_USER_INTERFACE_IDIOM() != UIUserInterfaceIdiomPhone)

//判断设备版本

#define IS_IOS6_LAGACY floor(NSFoundationVersionNumber) <= NSFoundationVersionNumber_iOS_6_1

#define IS_IOS7 floor(NSFoundationVersionNumber) > NSFoundationVersionNumber_iOS_6_1

#define IS_IOS5_LAGACY floor(NSFoundationVersionNumber) <= NSFoundationVersionNumber_iOS_5_1

#define IS_IOS6_AFTER floor(NSFoundationVersionNumber) > NSFoundationVersionNumber_iOS_5_1

 

  相关解决方案