我是新人。我用segue去(执行流程)这样的
UIViewController A => UIViewController B => UIViewController C.
并使用 unwind segue 从 C 移动到 A。但我对它们之间的不同感到困惑。
以及为什么我使用 unwind segue 虽然我有授权。
提前谢谢你。
Best Answer-推荐答案 strong>
Regular Segue 允许我们将数据从一个 View Controller 发送到另一个 View Controller ,但如果用户在该 View Controller 中更改或添加了详细信息,则将数据带回并不容易。这就是 Unwind Segue 的用武之地。
Read more here
关于ios - 在 Storyboard场景之间移动有什么区别 - Segues 和 Unwind,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/36300672/
|