Skip to content

Instantly share code, notes, and snippets.

@jstart
Created August 4, 2015 23:19
Show Gist options
  • Save jstart/276437aaa67aad8b7970 to your computer and use it in GitHub Desktop.
Save jstart/276437aaa67aad8b7970 to your computer and use it in GitHub Desktop.
UIStackViewAlignment
enum UIStackViewAlignment : Int {
case Fill
case Leading
static var Top: UIStackViewAlignment { get { return .Leading} }
case FirstBaseline
case Center
case Trailing
static var Bottom: UIStackViewAlignment { get{ return .Trailing} }
case LastBaseline
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment