I have the following Storyboard:
I dont have enough rep points yet for images :( so I posted it here:
http://www.bodharr.com/brionh/example.png
I have the following code in my Journal ViewController Class:
-(void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender
{
if ([segue.identifier isEqualToString:@"DiaJournals"])
{
UINavigationController *controller =segue.destinationViewController;
[self presentModalViewController:controller animated:YES];
}
}
When I push to my navigation controller the tab bar menu disappears but the table view comes up with all my data. How do I properly segue to maintain the tab bar menu from my Journals ViewController to my Navigation Controller?
I know this is a total noobie question and I honestly have done lots of research on storyboarding and seques but other then here: How within a tab bar controller do I segue from one view controller to another and retain the tab bar? and honestly been trying to fit that into my situation, but I am just so lost and frustrated on this. Any Help appreciated and I always mark answers.