Created
September 20, 2019 05:27
-
-
Save joshluongo/f92c82a1ade11b40dfee93304a5ba1f7 to your computer and use it in GitHub Desktop.
iOS 13 Partial Navigation Bar Clipping Fix
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
override func viewWillAppear(_ animated: Bool) { | |
super.viewWillAppear(animated); | |
// Workaround for FB7300235 | |
self.navigationController?.navigationBar.prefersLargeTitles = true | |
self.navigationController?.navigationBar.prefersLargeTitles = false | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment