Hi, ok i executethe the changes what you tell me but the navigation not functionally yet..
i have a dude whit this..
in the delegate.h after at the import of <u.kit>put this code,
Code:
@class categoriasViewController;
after in the declare of interface
Code:
categoriasViewController *viewController;
and after make the properties
Code:
@property (nonatomic, retain) categoriasViewController *viewController;
so, in the delegate.m synthetize viewController, and pass UINavigationController,
Code:
UINavigationController *navController = [[UINavigationController alloc] initWithRootViewController:viewController];
so.. i think what this code have the same functionallity?
Now when i attach the controller navigation, i modified the nes code when create the tabbar...
Code:
navController = [[categoriasViewController alloc] initWithNibName:@"categoriasView" bundle:nil];
navController.title = @"Categorias";
tabBarController.viewControllers = [NSArray arrayWithObjects:navController, negViewController, sitViewController, favViewController, ranViewController, nil];
Now, i apply your code but the the navigation not works..