mirror of
https://github.com/confirmedcode/Lockdown-iOS.git
synced 2025-12-25 12:13:52 +01:00
17 lines
296 B
Swift
17 lines
296 B
Swift
//
|
|
// UIKit+Extensions.swift
|
|
// LockdowniOS
|
|
//
|
|
// Created by Oleg Dreyman on 28.05.2020.
|
|
// Copyright © 2020 Confirmed Inc. All rights reserved.
|
|
//
|
|
|
|
import UIKit
|
|
|
|
extension UIDevice {
|
|
|
|
static var is4InchIphone: Bool {
|
|
return UIScreen.main.nativeBounds.height == 1136
|
|
}
|
|
}
|