i am developing an ios app and using storyboards generally. in my view controller named blackView (it has no xib file) there is a button to play video. that button goes to another view controller named videoViewController (videoViewController is not in storyboard it has xib file). after user clicks to done on the videoViewController user should return to the blackView and now all is work but after return to the blackView from videViewController the navigation bar and tab bar controllers of blackView not appear
how can i handle this? how can i get appear those navigation and tab bars on the blackView?
this is my code in my videoViewController.m file
- (void) moviePlayBackDidFinish:(NSNotification*)notification
{
UIStoryboard *storyboard = [UIStoryboard storyboardWithName:@"MainStoryboard" bundle:nil];
UIViewController * myview=[storyboard instantiateViewControllerWithIdentifier:@"blackView"];
[self presentModalViewController:myview animated:YES];
}
[self.navigationController setNavigationBarHidden:NO animated:NO];in yourblackView's view will appear. – rokjarc Jun 3 '12 at 14:45[blackView.navigationController setNavigationBarHidden:NO animated:NO];when dismissing modal viewcontroller - ofcourse you'll need some kind of reference to blackView – rokjarc Jun 3 '12 at 15:07