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.
我使用segue从场景A导航到场景B,并想通过触摸按钮返回A。我是否必须创建一个新的 segue 才能返回,还是应该做其他事情?如果我创建一个新的 segue,它会是循环引用吗?
如果您使用模态转场样式,则取决于您转场的方式,那么您必须这样做,
[self dismissModalViewControllerAnimated:YES];
if push style segue
[self.navigationController popViewControllerAnimated:YES];
在您希望使用的按钮的 IBAction 方法中根据您的 segue 样式执行任何操作。