I currently see that when I Segue to another StoryBoard ViewController that is part of a the Tabbar menu. it shows up the ViewController But does not show the Menu Tabbar.
Here is my Code
- (IBAction)endCall:(id)sender {
NSLog(@"End Call");
UIStoryboard *mainStoryboard = [UIStoryboard storyboardWithName:@"Main" bundle:nil];
UIViewController *vc = [mainStoryboard instantiateViewControllerWithIdentifier:@"callHistory"];
[self presentViewController:vc animated:YES completion:nil];
}
Note: The User Recent History View Controller Only Contains a ViewController .m and is linked to a Storyboard Tabbar Controller on Storyboard it does not contain a TabbarController Class