• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

根据屏幕分辨率判断当前手机型号(swift4.1) - 全栈测试之路

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

根据屏幕分辨率判断当前手机型号(swift4.1)

import UIKit

class ViewController: UIViewController {

    override func viewDidLoad() {
        super.viewDidLoad()
        // Do any additional setup after loading the view, typically from a nib.
        
        var label = "1"
        
        //获取屏幕大小
        let iOSDeviceScreenSize: CGSize = UIScreen.main.bounds.size
        
        NSLog("%@ x %@", iOSDeviceScreenSize.width, iOSDeviceScreenSize.height)
        var s : NSString = NSString(format: "%@ x %@",iOSDeviceScreenSize.width,iOSDeviceScreenSize.height)
        label = s as String
        
        
        //获取设备信息,判断是否为iphone
        if (UIDevice.current.userInterfaceIdiom == UIUserInterfaceIdiom.phone) {

            //判断是否为竖屏
            if (iOSDeviceScreenSize.height > iOSDeviceScreenSize.width){
                if(iOSDeviceScreenSize.height == 568){
                    NSLog("iphone5/5s/5c/se")
                } else if (iOSDeviceScreenSize.height == 667){
                    NSLog("iphone 6/6s/7/8")
                } else if (iOSDeviceScreenSize.height == 736){
                    NSLog("iphone 6plus/6Splus/7plus/8plus ")
                } else if (iOSDeviceScreenSize.height == 812){
                    NSLog("iphone X/XS ")
                } else if (iOSDeviceScreenSize.height == 896){
                    NSLog("iphone XR/XSMax ")
                } else {
                    NSLog("iphone4s....")
                }
            }
            
            if (iOSDeviceScreenSize.width > iOSDeviceScreenSize.height){
                if(iOSDeviceScreenSize.width == 568){
                    NSLog("iphone5/5s/5c/se")
                } else if (iOSDeviceScreenSize.width == 667){
                    NSLog("iphone 6/6s/7/8")
                } else if (iOSDeviceScreenSize.width == 736){
                    NSLog("iphone 6plus/6Splus/7plus/8plus ")
                } else if (iOSDeviceScreenSize.width == 812){
                    NSLog("iphone X/XS ")
                } else if (iOSDeviceScreenSize.width == 896){
                    NSLog("iphone XR/XSMax ")
                } else {
                    NSLog("iphone4s....")
                }
            }
            
        }
        
        
        
        
    }


}

鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
最新:适配Xcode9.0与Swift4.0发布时间:2022-07-13
下一篇:
Swift-3-字符串和字符发布时间:2022-07-13
热门推荐
热门话题
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap