designworks.xib (designworks.m、designworks.h) から MainStoryboard FirstViewController (タブ バー コントローラー、タブからの最初のコントローラー) に切り替えると、コンテンツはストーリーボードに読み込まれますが、タブ バーには読み込まれません。一番下のナビゲーション。
- (IBAction)backToHome:(id)sender {
/*
FirstViewController *fvc = [[FirstViewController alloc] initWithNibName:nil bundle:nil];
[self presentViewController:fvc animated:YES completion:nil];
*/
UIStoryboard *storyboard = [UIStoryboard storyboardWithName:@"MainStoryboard" bundle:nil];
FirstViewController *fvc = [storyboard instantiateViewControllerWithIdentifier:@"FirstViewController"];
fvc.modalTransitionStyle = UIModalTransitionStyleCoverVertical;
[self presentViewController:fvc animated:YES completion:nil];
}