I understand the idea of the new auto layout technology in iOS6 is that you no longer need to set a frame, but you code by intent?
Following on from this at runtime if I change a UIView size by its frame any of its subviews currently are not moving and changing with the view.
I therefor have created an outlet for a constraint on the UIView and changed the constant of this constraint. This changes the size of the UIView and also all the subviews move appropriately.
Thus am I on the right track here? Is this how I am suppose to changed UIView sizes under auto layout?