iPhone屏幕适配

我一直认为,作为一个开发者来说,搬砖是不可避免的,人的经历不是无穷的,而我们搬砖的目的,只是为了更好的站在别人的肩膀上去更进一步,不需要抵触,也许正因为这样,本来停步不前的人也因为我们站得更高。


CGSize screenSize = [UIScreen mainScreen].bounds.size;

// 如果是iPhone

if ([UIDevice currentDevice].userInterfaceIdiom == UIUserInterfaceIdiomPhone) {

// 竖屏情况

if (screenSize.height > screenSize.width) {

if (screenSize.height == 480) {

NSLog(@"当前为iPhone 4/4s");

}else if (screenSize.height == 568) {

NSLog(@"当前为iPhone 5/5c/5s iPod Touch5 设备");

}else if (screenSize.height == 667) {

NSLog(@"当前为iPhone6/6s设备");

}else if (screenSize.height == 736) {

NSLog(@"当前为iPhone6 Plus/iPhone6s Plus 设备");

}else {

NSLog(@"当前为iPhone4/4s 等其他设备");

}

}

// 横屏情况

if (screenSize.width > screenSize.height) {

if (screenSize.width == 480) {

NSLog(@"当前为iPhone 4/4s i");

}else if (screenSize.width == 568) {

NSLog(@"当前为iPhone 5/5c/5s iPod Touch5 设备");

}else if (screenSize.width == 667) {

NSLog(@"当前为iPhone6/6s设备");

}else if (screenSize.width == 736) {

NSLog(@"当前为iPhone6 Plus/iPhone6s Plus 设备");

}else {

NSLog(@"当前为iPhone4/4s 等其他设备");

}

}

}

你可能感兴趣的:(iPhone屏幕适配)