打开应用程序时,我在视图上准备好了登录系统。我点击登录按钮时就这样说了,它说得对,但是如何将它链接到我的故事板中的另一个视图?非常感谢帮助。
答案 0 :(得分:1)
我建议您查看http://www.raywenderlich.com/5138/beginning-storyboards-in-ios-5-part-1,因为这是一个很好的解释教程。它实际上是故事板上的2部分教程。
答案 1 :(得分:0)
如果没有很多信息,我会做出一些假设。我假设您在转换到另一个控制器之前想要验证凭据。因此,您需要验证您的凭据,然后使用您在故事板中定义的segue的标识符调用performSegueWithIdentifier:sender :.
答案 2 :(得分:0)
快速回答:
首先,在界面构建器中设置View Controller的Storyboard ID
。
然后,你可以这样做,假设你有一个navigationController
:
YourViewController *viewController = [[YourViewController alloc] init];
viewController = [self.storyboard instantiateViewControllerWithIdentifier:@"viewControllerName"];
[self.navigationController pushViewController:viewController animated:YES];
如果您没有navigationController,则可以改为显示:
[self presentViewController:viewController animated:YES completion:NULL];
希望这有帮助。