Skip to content

Instantly share code, notes, and snippets.

@wisaruthk
Created April 18, 2016 08:33
Show Gist options
  • Save wisaruthk/8269d556448c1c8a9a69c8a4b87731bf to your computer and use it in GitHub Desktop.
Save wisaruthk/8269d556448c1c8a9a69c8a4b87731bf to your computer and use it in GitHub Desktop.
About layout
[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