Last active
February 9, 2018 12:53
-
-
Save agoiabel/1b99e44f0ec3383b9d97c9de06ba650d to your computer and use it in GitHub Desktop.
autolayout_using_nslayoutconstraint.swift
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 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