Last active
November 2, 2016 20:17
-
-
Save Kievkao/f8723e6f0579b4665eda3dc267cc9084 to your computer and use it in GitHub Desktop.
Center view using VFL
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
| NSArray *horizontalConstraints = [NSLayoutConstraint constraintsWithVisualFormat:@"V:[superview]-(<=1)-[label]" options:NSLayoutFormatAlignAllCenterX metrics:nil views:@{@"superview": self, @"label" : self.timeLabel}]; | |
| NSArray *verticalConstraints = [NSLayoutConstraint constraintsWithVisualFormat:@"H:[superview]-(<=1)-[label]" options: NSLayoutFormatAlignAllCenterY metrics: nil views:@{@"superview": self, @"label" : self.timeLabel}]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment