I have created a custom navigation controller in appDelegate :
self.window = [[[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]] autorelease];
poemsView = [[[PoemsViewController alloc]initWithNibName:@"PoemsViewController" bundle:nil] autorelease];
self.navigationController = [[[UINavigationController alloc] initWithRootViewController:poemsView] autorelease];
self.navigationController.navigationBarHidden = YES;
self.viewController = [[[ViewController alloc] initWithNibName:@"ViewController" bundle:nil] autorelease];
self.window.rootViewController = self.navigationController;
[self.window makeKeyAndVisible];
so the problem is I need my app lunches from viewController , but if I set my viewController as rootviewController , my navigation controller does not push navigation and vice versa , if set my navigation controller as a root , app does not load from menus or main view controller .
appearancecustomize the appearance of the standard navigation controller, to putting a category onUINavigationBarand replacing itsdrawRect. Can you explain what you're trying to do in your customization? You generally don't want to subclassUINavigationController(not that that's what you've done), but I'm not clear what you're trying to do. Recommendations will vary depending upon what effect you're trying to achieve. – Rob Dec 16 '12 at 18:25