我的项目中有 StoryBoard 和 xib。我知道如何从情节提要转到 xib,这是代码:
ChosenPlacesViewController *cpvc = [[ChosenPlacesViewController alloc]initWithNibName:@"ChosenPlacesViewController" bundle:nil];
[cpvc setModalTransitionStyle:UIModalTransitionStyleFlipHorizontal];
[self presentModalViewController:cpvc animated:NO];
但是如何从 xib 转到 StoryBoard 中的不同 ViewController?
我知道我可以使用:
[self dismissViewControllerAnimated:NO completion:NO];
但我想去不同的 ViewController(TabBar StoryBoard),而不是最后一个。