Skip to content

Instantly share code, notes, and snippets.

@ksmandersen
Created August 4, 2016 18:23
Show Gist options
  • Save ksmandersen/b7bd7ebf5c4765cbab5264f15f458d04 to your computer and use it in GitHub Desktop.
Save ksmandersen/b7bd7ebf5c4765cbab5264f15f458d04 to your computer and use it in GitHub Desktop.
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