I have a UIView/UIViewController (UIViewController
) within storyboard that contains a custom UIView (CustomView
) that has an associated .xib file. I am encountering the following phenomenon when I load UIViewController
:
CustomView
'sawakeFromNib
function is called- SOMETHING(?) sets my subview's frame to a height of 0.0; stack trace reveals
[UIViewController autoresizedArchivedView]
(relevant?) UIViewController
'sviewDidLoad
function is called
Any idea what this "something" that occurs between awakeFromNib
and viewDidLoad
and how I might control it?