美文网首页
iPhone屏幕适配

iPhone屏幕适配

作者: 漂泊的飞鸟 | 来源:发表于2017-02-21 14:12 被阅读0次

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

    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屏幕适配

          本文链接:https://www.haomeiwen.com/subject/eqhuwttx.html