Created
January 6, 2019 19:39
-
-
Save pedrommcarrasco/abc6a3baf8c007bd207e5ed9f447334c to your computer and use it in GitHub Desktop.
I Want To Be Discardable - Real World Example
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
let a = UIView() | |
let b = UIView() | |
a.topAnchor.constraint(equalTo: b.topAnchor) | |
let aBottom = a.bottomAnchor.constraint(equalTo: b.bottomAnchor) | |
aBottom.priority = .defaultHigh |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment