Skip to content

Instantly share code, notes, and snippets.

@tularovbeslan
Last active January 24, 2018 11:19
Show Gist options
  • Save tularovbeslan/79a6b76323c3bd0b4e9ac4ece1a4c1e6 to your computer and use it in GitHub Desktop.
Save tularovbeslan/79a6b76323c3bd0b4e9ac4ece1a4c1e6 to your computer and use it in GitHub Desktop.
Hide statusbar with slide animation
class ViewController: UIViewController {
var isHidden:Bool = false {
didSet{
UIView.animate(withDuration: 0.5) { () -> Void in
self.setNeedsStatusBarAppearanceUpdate()
}
}
}
override var preferredStatusBarUpdateAnimation: UIStatusBarAnimation{
return .slide
}
override var prefersStatusBarHidden: Bool{
return isHidden
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment