0

我正在做一个项目,但有不同的屏幕。由于更复杂,我告诉过创建 2 个项目,然后将其合并为 1 个应用程序。

所以基本上我有 2 个项目,我们将其命名为 A 和 B。它们都有 2 个不同的故事板。现在我希望这些到项目中,当应用程序从项目 A 触发情节提要时应该显示并且项目 A 中有按钮,点击它应该显示项目 B。

我怎样才能做到这一点。有哪位朋友可以帮帮我吗。。

4

1 回答 1

0

我不确定这个,但你可以试试这个

UIStoryboard *storyboard = [UIStoryboard storyboardWithName:@"YourStoryboardName" bundle:nil];
YourViewController *objViewController = [storyboard instantiateViewControllerWithIdentifier:@"YourViewController"];
[self.navigationController pushViewController:objViewController animated:YES];
于 2013-09-19T11:11:28.423 回答