Skip to content

Instantly share code, notes, and snippets.

@ilandbt
Last active February 13, 2017 14:13
Show Gist options
  • Save ilandbt/506afea0fdb7b33121bbb9f3c72cdc41 to your computer and use it in GitHub Desktop.
Save ilandbt/506afea0fdb7b33121bbb9f3c72cdc41 to your computer and use it in GitHub Desktop.
getting height constraint
extension UIView {
var heightWithConstraint: CGFloat {
get {
for constraint in constraints where constraint.firstAttribute == .height {
return constraint.constant
}
return 0
}
set (newHeight){
for constraint in constraints where constraint.firstAttribute == .height {
constraint.constant = newHeight
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment