그래오늘은이거야

아이폰14, 13, 12 ,11 해상도 IPhone11, IPhone11 pro Max, XsMax 아이폰14, 아이폰14 pro, X, Xs , 아이폰6 6s 6s+ 7+ 8+, 아이폰6, 6s, 7, 8 아이폰 5,5s,5c,SE 해상도 화면 크기 및 비율 iOS16 OS16 Device Model Name iPhone14 display.. 본문

세상 개발/IOS(Swift)

아이폰14, 13, 12 ,11 해상도 IPhone11, IPhone11 pro Max, XsMax 아이폰14, 아이폰14 pro, X, Xs , 아이폰6 6s 6s+ 7+ 8+, 아이폰6, 6s, 7, 8 아이폰 5,5s,5c,SE 해상도 화면 크기 및 비율 iOS16 OS16 Device Model Name iPhone14 display..

jinhongstar 2022. 9. 15. 17:48
728x90
반응형

아이폰 종류별 해상도 크기 및 비율

아이폰14, iPhone 14Pro, iPhone 14Pro Max

2022년 9월 기준으로 

아이폰 11, 아이폰12,아이폰13,아이폰14 해상도 는 동일하게나왔습니다.

 

아이폰14 해상도 아이폰11을 참고하여 만드시면 됩니다! 

display

현재까지는 디바이스 사이즈가 동일합니다.

(iPhone 11 Pro Max, Xs Max)

(iPhone 12Pro Max, Xs Max)

(iPhone 13 Pro Max, Xs Max)

(iPhone 14 Pro Max, Xs Max)

 (iPhone 11, XR)

(iPhone Pro, X, Xs)

(iPhone 6+,6s+, 7+, 8)

(iPhone 5, 5s, 5c, SE)

(iPhone 4, 4s)

(iPhone 2G,3G,3GS)

 

iPhone 14 모델명 입니다.

곧 출시를 합니다. 출시 일정은 아직 발표하지 않았습니다.

iPhone 14 Pro 및 iPhone 14 Pro Max는 Dynamic Island, iPhone 사상 최초의 48MP 카메라, 상시표시형 디스플레이, 혁신적인 안전 기능 등을 선보이며 iPhone 역사상 최대의 도약을 이뤄낸다.
 
 
 

 

 


iPhone 14 Pro
  • 15.5cm(대각선) 전면 화면 OLED 디스플레이
  • 2556 x 1179 픽셀 해상도(460ppi)

iPhone 14 Pro MAX
  • 17.0cm(대각선) 전면 화면 OLED 디스플레이
  • 2796 x 1290 픽셀 해상도(460ppi)

 

 

 

 

참고 자료 https://stackoverflow.com/questions/26028918/how-to-determine-the-current-iphone-device-model

 

How to determine the current iPhone/device model?

Is there a way to get the device model name (iPhone 4S, iPhone 5, iPhone 5S, etc) in Swift? I know there is a property named UIDevice.currentDevice().model but it only returns device type (iPod to...

stackoverflow.com

 

 iPhone/device model? 

System Model 정의 아이폰14 추가 해주시면 됩니다.

UIDevice.currentDevice().model

import UIKit

public extension UIDevice {

    static let modelName: String = {
        var systemInfo = utsname()
        uname(&systemInfo)
        let machineMirror = Mirror(reflecting: systemInfo.machine)
        let identifier = machineMirror.children.reduce("") { identifier, element in
            guard let value = element.value as? Int8, value != 0 else { return identifier }
            return identifier + String(UnicodeScalar(UInt8(value)))
        }

        func mapToDevice(identifier: String) -> String { // swiftlint:disable:this cyclomatic_complexity
            #if os(iOS)
            switch identifier {
            case "iPod5,1":                                       return "iPod touch (5th generation)"
            case "iPod7,1":                                       return "iPod touch (6th generation)"
            case "iPod9,1":                                       return "iPod touch (7th generation)"
            case "iPhone3,1", "iPhone3,2", "iPhone3,3":           return "iPhone 4"
            case "iPhone4,1":                                     return "iPhone 4s"
            case "iPhone5,1", "iPhone5,2":                        return "iPhone 5"
            case "iPhone5,3", "iPhone5,4":                        return "iPhone 5c"
            case "iPhone6,1", "iPhone6,2":                        return "iPhone 5s"
            case "iPhone7,2":                                     return "iPhone 6"
            case "iPhone7,1":                                     return "iPhone 6 Plus"
            case "iPhone8,1":                                     return "iPhone 6s"
            case "iPhone8,2":                                     return "iPhone 6s Plus"
            case "iPhone9,1", "iPhone9,3":                        return "iPhone 7"
            case "iPhone9,2", "iPhone9,4":                        return "iPhone 7 Plus"
            case "iPhone10,1", "iPhone10,4":                      return "iPhone 8"
            case "iPhone10,2", "iPhone10,5":                      return "iPhone 8 Plus"
            case "iPhone10,3", "iPhone10,6":                      return "iPhone X"
            case "iPhone11,2":                                    return "iPhone XS"
            case "iPhone11,4", "iPhone11,6":                      return "iPhone XS Max"
            case "iPhone11,8":                                    return "iPhone XR"
            case "iPhone12,1":                                    return "iPhone 11"
            case "iPhone12,3":                                    return "iPhone 11 Pro"
            case "iPhone12,5":                                    return "iPhone 11 Pro Max"
            case "iPhone13,1":                                    return "iPhone 12 mini"
            case "iPhone13,2":                                    return "iPhone 12"
            case "iPhone13,3":                                    return "iPhone 12 Pro"
            case "iPhone13,4":                                    return "iPhone 12 Pro Max"
            case "iPhone14,4":                                    return "iPhone 13 mini"
            case "iPhone14,5":                                    return "iPhone 13"
            case "iPhone14,2":                                    return "iPhone 13 Pro"
            case "iPhone14,3":                                    return "iPhone 13 Pro Max"
            case "iPhone14,7":                                    return "iPhone 14"
            case "iPhone14,8":                                    return "iPhone 14 Plus"
            case "iPhone15,2":                                    return "iPhone 14 Pro"
            case "iPhone15,3":                                    return "iPhone 14 Pro Max"
            case "iPhone8,4":                                     return "iPhone SE"
            case "iPhone12,8":                                    return "iPhone SE (2nd generation)"
            case "iPhone14,6":                                    return "iPhone SE (3rd generation)"
            case "iPad2,1", "iPad2,2", "iPad2,3", "iPad2,4":      return "iPad 2"
            case "iPad3,1", "iPad3,2", "iPad3,3":                 return "iPad (3rd generation)"
            case "iPad3,4", "iPad3,5", "iPad3,6":                 return "iPad (4th generation)"
            case "iPad6,11", "iPad6,12":                          return "iPad (5th generation)"
            case "iPad7,5", "iPad7,6":                            return "iPad (6th generation)"
            case "iPad7,11", "iPad7,12":                          return "iPad (7th generation)"
            case "iPad11,6", "iPad11,7":                          return "iPad (8th generation)"
            case "iPad12,1", "iPad12,2":                          return "iPad (9th generation)"
            case "iPad4,1", "iPad4,2", "iPad4,3":                 return "iPad Air"
            case "iPad5,3", "iPad5,4":                            return "iPad Air 2"
            case "iPad11,3", "iPad11,4":                          return "iPad Air (3rd generation)"
            case "iPad13,1", "iPad13,2":                          return "iPad Air (4th generation)"
            case "iPad13,16", "iPad13,17":                        return "iPad Air (5th generation)"
            case "iPad2,5", "iPad2,6", "iPad2,7":                 return "iPad mini"
            case "iPad4,4", "iPad4,5", "iPad4,6":                 return "iPad mini 2"
            case "iPad4,7", "iPad4,8", "iPad4,9":                 return "iPad mini 3"
            case "iPad5,1", "iPad5,2":                            return "iPad mini 4"
            case "iPad11,1", "iPad11,2":                          return "iPad mini (5th generation)"
            case "iPad14,1", "iPad14,2":                          return "iPad mini (6th generation)"
            case "iPad6,3", "iPad6,4":                            return "iPad Pro (9.7-inch)"
            case "iPad7,3", "iPad7,4":                            return "iPad Pro (10.5-inch)"
            case "iPad8,1", "iPad8,2", "iPad8,3", "iPad8,4":      return "iPad Pro (11-inch) (1st generation)"
            case "iPad8,9", "iPad8,10":                           return "iPad Pro (11-inch) (2nd generation)"
            case "iPad13,4", "iPad13,5", "iPad13,6", "iPad13,7":  return "iPad Pro (11-inch) (3rd generation)"
            case "iPad6,7", "iPad6,8":                            return "iPad Pro (12.9-inch) (1st generation)"
            case "iPad7,1", "iPad7,2":                            return "iPad Pro (12.9-inch) (2nd generation)"
            case "iPad8,5", "iPad8,6", "iPad8,7", "iPad8,8":      return "iPad Pro (12.9-inch) (3rd generation)"
            case "iPad8,11", "iPad8,12":                          return "iPad Pro (12.9-inch) (4th generation)"
            case "iPad13,8", "iPad13,9", "iPad13,10", "iPad13,11":return "iPad Pro (12.9-inch) (5th generation)"
            case "AppleTV5,3":                                    return "Apple TV"
            case "AppleTV6,2":                                    return "Apple TV 4K"
            case "AudioAccessory1,1":                             return "HomePod"
            case "AudioAccessory5,1":                             return "HomePod mini"
            case "i386", "x86_64", "arm64":                       return "Simulator \(mapToDevice(identifier: ProcessInfo().environment["SIMULATOR_MODEL_IDENTIFIER"] ?? "iOS"))"
            default:                                              return identifier
            }
            #elseif os(tvOS)
            switch identifier {
            case "AppleTV5,3": return "Apple TV 4"
            case "AppleTV6,2": return "Apple TV 4K"
            case "i386", "x86_64": return "Simulator \(mapToDevice(identifier: ProcessInfo().environment["SIMULATOR_MODEL_IDENTIFIER"] ?? "tvOS"))"
            default: return identifier
            }
            #endif
        }

        return mapToDevice(identifier: identifier)
    }()

}

 

애플 사이트 참고 

 
iPhone 14 Pro
iPhone 14 Pro Max
마감
스페이스 블랙, 실버, 골드, 딥 퍼플
Ceramic Shield 소재 전면
표면 질감을 살린 무광 글래스 소재 후면 및
스테인리스 스틸 디자인
스페이스 블랙, 실버, 골드, 딥 퍼플
Ceramic Shield 소재 전면
표면 질감을 살린 무광 글래스 소재 후면 및
스테인리스 스틸 디자인
저장 용량1
  • 128GB
  • 256GB
  • 512GB
  • 1TB
  • 128GB
  • 256GB
  • 512GB
  • 1TB
 

 크기 및 무게2

가로:71.5mm

세로:147.5mm

두께:7.85mm

무게: 206g
가로:77.6mm

세로:160.7mm

두께:7.85mm

무게: 240g
 

iPhone 14 Pro 및 iPhone 14 Pro Max - 제품 사양

iPhone 14 Pro 및 iPhone 14 Pro Max의 모든 제품 사양을 확인하세요.

www.apple.com

디스플레이
  •  
  •  
  • Super Retina XDR 디스플레이
  • 15.5cm(대각선) 전면 화면 OLED 디스플레이
  • 2556 x 1179 픽셀 해상도(460ppi)
  • Super Retina XDR 디스플레이
  • 17.0cm(대각선) 전면 화면 OLED 디스플레이
  • 2796 x 1290 픽셀 해상도(460ppi)
iPhone 14 Pro 디스플레이는 모서리가 둥근 형태로, 기기의 아름다운 곡면 디자인을 반영합니다. 이 모서리는 기기의 전체적인 모양인 직사각형 내부에 위치합니다. 직사각형 기준으로 측정했을 때, 화면은 대각선 길이 기준 15.54cm입니다(실제로 보이는 영역은 이보다 좁음). iPhone 14 Pro Max 디스플레이는 모서리가 둥근 형태로, 기기의 아름다운 곡면 디자인을 반영합니다. 이 모서리는 기기의 전체적인 모양인 직사각형 내부에 위치합니다. 직사각형 기준으로 측정했을 때, 화면은 대각선 길이 기준 17.00cm입니다(실제로 보이는 영역은 이보다 좁음).
   

공통 사항:

  • Dynamic Island
  • 상시표시형 디스플레이
  • 최대 120Hz 가변 재생률을 제공하는 ProMotion 기술
  • HDR 디스플레이
  • True Tone
  • 넓은 색영역(P3)
  • 햅틱 터치
  • 2,000,000:1 명암비(일반)
  • 1000 니트 전체 최대 밝기(일반); 1600 니트 부분 최대 밝기(HDR); 2000 니트 부분 최대 밝기(야외)
  • 지문 및 유분 방지 코팅
  • 여러 언어 및 문자 동시 표시 지원

 

 

 

출처 : https://www.apple.com/kr/iphone-14-pro/specs/

 

iPhone 14 Pro 및 iPhone 14 Pro Max - 제품 사양

iPhone 14 Pro 및 iPhone 14 Pro Max의 모든 제품 사양을 확인하세요.

www.apple.com

 

반응형
Comments