mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-06-16 05:55:20 +00:00
16 lines
434 B
Swift
16 lines
434 B
Swift
import UIKit
|
|
import SwiftSignalKit
|
|
|
|
public protocol StatusBarHost {
|
|
var statusBarFrame: CGRect { get }
|
|
var statusBarStyle: UIStatusBarStyle { get set }
|
|
|
|
var keyboardWindow: UIWindow? { get }
|
|
var keyboardView: UIView? { get }
|
|
|
|
var isApplicationInForeground: Bool { get }
|
|
|
|
func setStatusBarStyle(_ style: UIStatusBarStyle, animated: Bool)
|
|
func setStatusBarHidden(_ value: Bool, animated: Bool)
|
|
}
|