I have a UIViewController and in willRotateToInterfaceOrientation, i am calling [self view] setNeedsLayout];
This view call's it's subview's (a UIScrollView) layoutSubviews method, but the UIScrollView doesn't call layoutSubviews for it's subviews. Is this how it's suppose to be? I thought if you call setNeedsLayout on a view, it will call layoutSubviews on each and every subivew and their subviews and on...
Do I have to manually, override layoutsubview in UIScrollView and call setNeedsDisplay for each of the subviews?
Thanks.