Last active
January 24, 2018 11:19
-
-
Save tularovbeslan/79a6b76323c3bd0b4e9ac4ece1a4c1e6 to your computer and use it in GitHub Desktop.
Hide statusbar with slide animation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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