Created
August 4, 2016 18:23
-
-
Save ksmandersen/b7bd7ebf5c4765cbab5264f15f458d04 to your computer and use it in GitHub Desktop.
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
let firstView = UIView() | |
let otherView = UIView() | |
// align.swift: | |
firstView.alignTop(20, to: otherView) | |
// vanilla: | |
firstView.topAnchor.constraint(equalTo: otherView.topAnchor, constant: 20) | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment