Last active
November 9, 2016 20:20
-
-
Save k06a/e6abaa6c9d2f2deec7d11feafb86acab to your computer and use it in GitHub Desktop.
Missing Anchors (2) on Medium.com
This file contains 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
@[ | |
[statusBarBackground.edgesAnchor.withoutBottomAnchor constraintsEqualToConstant:UIEdgeInsetsZero], | |
[statusBarBackground.heightAnchor constraintEqualToConstant:kStatusBarBackgroundHeight], | |
].active = YES; | |
@[ | |
[commentLabel.centerYAnchor constraintEqualToAnchor:commentLabel.superView], | |
[commentLabel.leadingAnchor.withTrailingAnchor constraintsLessThanOrEqualToConstant:UIEdgeInsetsMake(0, kCommentLeading, 0, kCommentTrailing)], | |
].active = YES; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment