Last active
January 16, 2017 18:27
-
-
Save saoudrizwan/07d52224faf1e316fda65af5b49fa47b to your computer and use it in GitHub Desktop.
This file contains 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
// show a nav bar | |
// 1. change some constraints | |
navBarHeightConstraint.update(offset: 80) | |
// 2. animate | |
UIView.animate(withDuration: 0.10, delay: 0.0, options: .curveLinear, animations: { | |
self.view.layoutIfNeeded() // Apple docs: "layout the subviews immediately" | |
}, completion: nil) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment