Being new to Cocoa, I\'m having a few issues with Interface Builder
, UIViewController
and friends.
I have a UIViewController
s
RE: SOLUTION FOUND!!!!!
Indeed that seems to be a working solution, however the real trick is not in setting the view.hidden
property to NO, what makes the view load from the nib file is the calling of the UIViewController's
view method, the view only actually gets loaded from the nib when the view method is called for the first time.
In that sense, a simple [viewController view]
message would force the view to load from the nib file.