I'm developing an Tab bar application in that i want to use navigation controller.
In didSelectRowAtIndexPath
i want to push the new view to the controller. I tried the following code but it did'nt help me.
DetailView *detailView = [[DetailView alloc] init];
[self.navigationController pushViewController:detailView animated:YES];
Can any one guide me where i'm doing wrong?