Created
January 18, 2019 00:18
-
-
Save Viniciuscarvalho/b1341f793d973fc219d0df8de9ff3afb to your computer and use it in GitHub Desktop.
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
| func buildConstraints() { | |
| self.content.snp.makeConstraints { make in | |
| make.edges.equalTo(self) | |
| } | |
| self.photo.snp.makeConstraints { make in | |
| make.edges.height.equalTo(content.self) | |
| make.edges.leading.equalTo(content.self) | |
| make.edges.trailing.equalTo(content.self) | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment