美文网首页
iOS 判断设备类型是iPhone 还是iPad

iOS 判断设备类型是iPhone 还是iPad

作者: Eyes_cc | 来源:发表于2020-04-13 18:24 被阅读0次
    /*
    public enum UIUserInterfaceIdiom : Int {
        
        case unspecified
    
        @available(iOS 3.2, *)
        case phone // iPhone and iPod touch style UI
    
        @available(iOS 3.2, *)
        case pad // iPad style UI
    
        @available(iOS 9.0, *)
        case tv // Apple TV style UI
    
        @available(iOS 9.0, *)
        case carPlay // CarPlay style UI
    }
    */
    if UIDevice.current.userInterfaceIdiom == UIUserInterfaceIdiom.phone {
       // iPhone
    }
    if UIDevice.current.userInterfaceIdiom == UIUserInterfaceIdiom.pad {
       // iPad
    }
    

    相关文章

      网友评论

          本文标题:iOS 判断设备类型是iPhone 还是iPad

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