mirror of https://github.com/xaoxuu/ProHUD
21 lines
356 B
Swift
21 lines
356 B
Swift
//
|
|
// HUDUtils.swift
|
|
// ProHUD
|
|
//
|
|
// Created by xaoxuu on 2020/6/22.
|
|
// Copyright © 2020 Titan Studio. All rights reserved.
|
|
//
|
|
|
|
import UIKit
|
|
import Inspire
|
|
|
|
extension String {
|
|
static let rotateKey = "rotationAnimation"
|
|
}
|
|
|
|
extension ProHUD {
|
|
static var safeAreaInsets: UIEdgeInsets {
|
|
return Inspire.shared.screen.safeAreaInsets
|
|
}
|
|
}
|