Files
repo-backup-pwnders/source-code/ALTs/AltStore/Extensions/UIScreen+CompactHeight.swift
Thunder7yoshi 06a8d21b98 source-code
2020-06-09 23:38:02 +02:00

17 lines
293 B
Swift

//
// UIScreen+CompactHeight.swift
// AltStore
//
// Created by Riley Testut on 9/6/19.
// Copyright © 2019 Riley Testut. All rights reserved.
//
import UIKit
extension UIScreen
{
var isExtraCompactHeight: Bool {
return self.fixedCoordinateSpace.bounds.height < 600
}
}