I have a tab based application with a navigation controller in it.
When i click on the tab i get a tableview that works correctly.
When i click on a cell, it pushes the respective view by using the following line of code:
[self.navigationController pushViewController:AJW animated:YES];
That pushes the second view which contains a button to a third view
the button is called upon by the following code:
- (IBAction)Map:(id)sender;
{
A_J_White_Park_Map *MAP =[[A_J_White_Park_Map alloc] initWithNibName:nil bundle:nil];
[self.navigationController pushViewController:MAP animated:YES];
}
When i click this button it displays a view where the Navigation Bar(with back button) shows along with the tab bar, but where the NIB file should display its just black/blank.
I have linked up the IBAction in IB correctly and i have even tried the "presentModalViewController" method but I can't work out why the view has appeared black/blank.
I was wondering if anyone knew where my problem is and how to fix it?
Any help would be greatly appreciated.
Thanks