Swiftgram/Display/StatusBarHost.swift
2016-09-05 23:19:33 +03:00

11 lines
263 B
Swift

import UIKit
public protocol StatusBarHost {
var statusBarFrame: CGRect { get }
var statusBarStyle: UIStatusBarStyle { get set }
var statusBarWindow: UIView? { get }
var statusBarView: UIView? { get }
var keyboardView: UIView? { get }
}