//判断是否为iPad
#define ISIPAD [[[UIDevice currentDevice].model substringToIndex:4] isEqualToString:@"iPad"]
//屏幕高度
#define SCREEN_HEIGHT ( ISIPAD ? 480 : [[UIScreen mainScreen] currentMode].size.height / 2 )
//屏幕宽度分类: iphone适配ipad
//判断是否为iPad
#define ISIPAD [[[UIDevice currentDevice].model substringToIndex:4] isEqualToString:@"iPad"]
//屏幕高度
#define SCREEN_HEIGHT ( ISIPAD ? 480 : [[UIScreen mainScreen] currentMode].size.height / 2 )
//屏幕宽度分类: iphone适配ipad
本文标题:iphone程序适配ipad可以用下面的宏进行尺寸改写
本文链接:https://www.haomeiwen.com/subject/jaktwttx.html
网友评论