Remove unused code

This commit is contained in:
Davide De Rosa 2018-10-27 13:21:03 +02:00
parent 42c94c3a14
commit 05d745ad6d
1 changed files with 0 additions and 4 deletions

View File

@ -33,10 +33,6 @@ class Macros {
static func actionSheet(_ title: String?, _ message: String?) -> UIAlertController { static func actionSheet(_ title: String?, _ message: String?) -> UIAlertController {
return UIAlertController(title: title, message: message, preferredStyle: .actionSheet) return UIAlertController(title: title, message: message, preferredStyle: .actionSheet)
} }
static var isDeviceNonPlus: Bool {
return (UI_USER_INTERFACE_IDIOM() == .phone) && (UIScreen.main.scale < 3.0)
}
} }
extension UIAlertController { extension UIAlertController {