Created
April 18, 2016 08:33
-
-
Save wisaruthk/8269d556448c1c8a9a69c8a4b87731bf to your computer and use it in GitHub Desktop.
About layout
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
[button setTranslatesAutoresizingMaskIntoConstraints: NO]; | |
id topGuide = myViewController.topLayoutGuide; | |
NSDictionary *viewsDictionary = NSDictionaryOfVariableBindings (button, topGuide); | |
[myViewController.view addConstraints: | |
[NSLayoutConstraint constraintsWithVisualFormat: @"V:[topGuide]-20-[button]" | |
options: 0 | |
metrics: nil | |
views: viewsDictionary] | |
]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment