Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在开发 iPhone 应用程序。我想使用情节提要进行视图切换,但我有条件,我想在满足条件后进行更改。我怎样才能使用故事板做到这一点?
提前致谢..
使用转场。
首先,您在故事板内部设置了这样的转场:
然后,您将 segue 的标识符编辑为某种东西,在这种情况下,NextView:
NextView
然后,最后,在您的 ViewController 中,当您想要切换视图时,调用以下代码:
[self performSegueWithIdentifier:@"NextView" sender:self];