iphone程序适配ipad可以用下面的宏进行尺寸改写
2017-02-13 本文已影响0人
无所不知的程序员
//判断是否为iPad
#define ISIPAD [[[UIDevice currentDevice].model substringToIndex:4] isEqualToString:@"iPad"]
//屏幕高度
#define SCREEN_HEIGHT ( ISIPAD ? 480 : [[UIScreen mainScreen] currentMode].size.height / 2 )
//屏幕宽度分类: iphone适配ipad