Is it possible to have multiple unwind segue in same view controller , where one bottom can navigate to different views with different unwind segue.
Asked
Active
Viewed 75 times
0
-
What do you mean "one bottom"? Do you mean a tab bar? – Martin Muldoon Apr 24 '18 at 19:30
-
1It only makes sense to trigger one segue at a time. You can wire up multiple unwind segues and trigger them with `performSegue(withIdentifier:sender:)`. Control drag from viewController icon at top of VC to exit icon, choose the destination `@IBAction`, then find the segue in the *Document Outline* and assign it an identifier. Repeat to create more segues. – vacawama Apr 24 '18 at 20:10
1 Answers
0
You can have multiple unwind segues from a single view controller, but the implementation of your segues to get to that view controller will determine how and where you can unwind.
See this answer and make sure you do a thorough search before asking a question as you will likely get the dupe hammer for this one.

Yrb
- 8,103
- 2
- 14
- 44