Skip to content

Instantly share code, notes, and snippets.

@Viniciuscarvalho
Created January 18, 2019 00:18
Show Gist options
  • Select an option

  • Save Viniciuscarvalho/b1341f793d973fc219d0df8de9ff3afb to your computer and use it in GitHub Desktop.

Select an option

Save Viniciuscarvalho/b1341f793d973fc219d0df8de9ff3afb to your computer and use it in GitHub Desktop.
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