mirror of https://github.com/oxen-io/session-ios
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
53 lines
1.6 KiB
Swift
53 lines
1.6 KiB
Swift
//
|
|
// Copyright (c) 2019 Open Whisper Systems. All rights reserved.
|
|
//
|
|
|
|
import UIKit
|
|
|
|
@objc
|
|
public extension UIDevice {
|
|
|
|
@objc
|
|
var hasIPhoneXNotch: Bool {
|
|
switch UIScreen.main.nativeBounds.height {
|
|
case 960:
|
|
// iPad in iPhone compatibility mode (using old iPhone 4 screen size)
|
|
return false
|
|
case 1136:
|
|
// iPhone 5 or 5S or 5C
|
|
return false
|
|
case 1334:
|
|
// iPhone 6/6S/7/8
|
|
return false
|
|
case 1792:
|
|
// iPhone XR
|
|
return true
|
|
case 1920, 2208:
|
|
// iPhone 6+/6S+/7+/8+//
|
|
return false
|
|
case 2436:
|
|
// iPhone X, iPhone XS
|
|
return true
|
|
case 2688:
|
|
// iPhone X Max
|
|
return true
|
|
default:
|
|
// Verify all our IOS_DEVICE_CONSTANT tags make sense when adding a new device size.
|
|
return false
|
|
}
|
|
}
|
|
|
|
// stringlint:ignore_contents
|
|
@objc func ows_setOrientation(_ orientation: UIInterfaceOrientation) {
|
|
// XXX - This is not officially supported, but there's no other way to programmatically rotate
|
|
// the interface.
|
|
let orientationKey = "orientation" // stringlint:ignore
|
|
self.setValue(orientation.rawValue, forKey: orientationKey)
|
|
|
|
// Not strictly necessary for the orientation to appear as changed
|
|
// but allegedly helps ensure related rotation delegate methods are called.
|
|
// https://stackoverflow.com/questions/20987249/how-do-i-programmatically-set-device-orientation-in-ios7
|
|
UINavigationController.attemptRotationToDeviceOrientation()
|
|
}
|
|
}
|