It seems like recently, view controllers have automatically downloaded a nib file with the exact name if it exists.
I can just initialize a view controller like
[[[ViewController alloc] init] autorelease]
and then when he clicks on the navigation controller or, thus, it loads without me.
This works in my application, with the exception of one view controller, and I cannot understand why. All view controllers that load their feathers automatically were probably created in Xcode 4, while the only one where it doesn't work was propositionally created back in Xcode 3. Is there a hidden switch somewhere? I donβt want to find anything in the settings of the nib file, the nib itself and nothing in the source code of the view controllers that could explain it.
source share