I am currently using this
to add the navigation controller view to the window from inside a UIViewController.
Correct me if I'm wrong but UINavigationController expects to be added to a UIWindow not as a subview of a UIView?
The main issue I'm hitting is that when I try to animate the view switching it doesn't work.
Code:
[[[UIApplication sharedApplication] keyWindow] addSubview:navView.view];
Correct me if I'm wrong but UINavigationController expects to be added to a UIWindow not as a subview of a UIView?
The main issue I'm hitting is that when I try to animate the view switching it doesn't work.