swift 判断iPhone机型

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了swift 判断iPhone机型相关的知识,希望对你有一定的参考价值。

extension UIDevice {
    static func isX() -> Bool {
        if UIDevice().userInterfaceIdiom == .phone {
            switch UIScreen.main.nativeBounds.height {
            case 2436:
                return true
            default:
                return false
                //            case 480:
                //                print("iPhone Classic")
                //            case 960:
                //                print("iPhone 4 or 4S")
                //            case 1136:
                //                print("iPhone 5 or 5S or 5C")
                //            case 1334:
                //                print("iPhone 6 or 6S")
                //            case 2208:
                //                print("iPhone 6+ or 6S+")
                //            case 2436:
                //                print("iPhone X")
            }
        }
        return false
    }
}

以上是关于swift 判断iPhone机型的主要内容,如果未能解决你的问题,请参考以下文章

IOS工具篇 swift 机型判断 含iPhone14系列

swift 含iPhone14系列 具体机型判断(最新最全)

iOS 判断iPhone机型的方法

常用宏定义 - 判断机型(屏幕尺寸)系统版本

js判断iphone14

js判断是否是iphoneX机型