Let's say that i have a view loaded from a nib that has layout constraints changing its appearance depending on its size.
I load the view from the nib and get a reference to UIView. I then manually change view's frame (e.g make it really big or small) and add it as a subview to already visible view.
Will the constraint system automatically figure that frame change should trigger auto layout recompilation? How does auto layout mix with manual frame/bounds changes? Where can i get detailed documentation on this?