Stevia
Stevia copied to clipboard
heightconstraint nil
I would expect this to return the appropriate constraints.
myView.Height == theirView.Height
myView.Width == theirView.Width
let h = myView.heightConstraint // nil
let w = myView.widthConstraint // nil
@GoldenJoe I tried to reproduce the issue with no luck.
In the sample project, I tried:
myView.Height == email.Height
myView.Width == email.Width
print("myView.widthConstraint \(myView.widthConstraint)")
print("myView.heightConstraint \(myView.heightConstraint)")
Which yields non null constraints.
Could you provide more code so that I can reproduce on my side?
PS: please excuse the oh so late reply xD
@GoldenJoe As said in my previous message I wasn't able to reproduce this behaviour. Would you mind making a small test project demonstrating the issue ?