Skip to content

Instantly share code, notes, and snippets.

@agoiabel
Last active February 9, 2018 12:53
Show Gist options
  • Select an option

  • Save agoiabel/1b99e44f0ec3383b9d97c9de06ba650d to your computer and use it in GitHub Desktop.

Select an option

Save agoiabel/1b99e44f0ec3383b9d97c9de06ba650d to your computer and use it in GitHub Desktop.
autolayout_using_nslayoutconstraint.swift
let horizontalConstraint = NSLayoutConstraint(
item: newView,
attribute: NSLayoutAttribute.centerX,
relatedBy: NSLayoutRelation.equal,
toItem: view,
attribute: NSLayoutAttribute.centerX,
multiplier: 1.0,
constant: 0
)
view.addConstraints([horizontalConstraint])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment