Loading UINavigationController from another nib automatically by UITabBarController
Posted
by
porneL
on Stack Overflow
See other posts from Stack Overflow
or by porneL
Published on 2009-05-19T15:38:39Z
Indexed on
2010/12/24
14:53 UTC
Read the original article
Hit count: 252
I think I've found the cause: Document Info window in IB has a warning: "'Selected Navigation Controller (Second)' has nib name property set to 'SecondView.nib', but this view controller is not intended to have its view set in this manner."
Bummer.
I've built nib in Interface Builder that has UITabBarController
at top level and switches between UINavigationController
s.
It works fine when everything is in a single nib
file, but I'd like to use separate nib
files for UINavigationController
s.
Starting with Apple's TabBar template, if I just change class of SecondView to UINavigationController
, it all breaks:
and all I get is this:
Is it possible to have separate file for UINavigationController
without programmatically setting everything?
I would like TabBarController
to handle loading and unloading of nibs.
© Stack Overflow or respective owner