【发布时间】:2013-01-24 14:16:37
【问题描述】:
我的项目中有 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),而不是最后一个。
【问题讨论】:
标签: objective-c xib viewcontroller