Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Unwind segue from navigation back button in Swift

I have a settings screen, in that I have a table cell. By clicking on that I take to another screen where user can choose an option and I want it back in the previous view controller when back button is pressed.

image first view controllerimage second view controller

I can put a custom bar button item, but I want to return to the parent view controller using the back button in the navigation bar rather than with a custom button on the view.

I don't seem to be able to override the navigation back button to point it down to my unwind segue action and since the back button doesn't appear on the storyboard, I cant drag the green Exit button to it

Is it possible to unwind a push segue with the back button?

like image 309
Raghavendra Avatar asked Aug 18 '14 07:08

Raghavendra


People also ask

How do you unwind segue in Swift?

Connect a triggering object to the exit control In your storyboard, create an unwind segue by right-clicking a triggering object and dragging to the Exit control at the top of your view controller's scene.

How do I remove a segue from a storyboard?

Click on the segue. Press the delete key. @chodobaggins If you deleted the wrong thing, such as one of the scenes in the storyboard, you can always Undo the change.

How do you segue a button in Swift?

Follow these steps to create segue from your tableview cell button (click). Add new (destination) view controller. Select your button. Press & hold control ctrl button from keyboard and drag mouse cursor from your button to new (destination) view controller.


1 Answers

Here's my solution, based on Objective-C code from Blankarsch to this StackOverflow question: How to trap the back button event

Put this code inside the View Controller you want to trap the Back button call from:

override func didMoveToParentViewController(parent: UIViewController?) {
    if (!(parent?.isEqual(self.parentViewController) ?? false)) {
        println("Back Button Pressed!")
    }
}

Inside of the if block, handle whatever you need to pass back. You'll also need to have a reference back to calling view controller as at this point most likely both parent and self.parentViewController are nil, so you can't navigate the View Controller tree.

Also, you might be able to get away with simply checking parent for nil as I haven't found a case where pressing the back button didn't result in parent being nil. So something like this is a bit more concise:

override func didMoveToParentViewController(parent: UIViewController?) {
    if (parent == nil) {
        println("Back Button Pressed!")
    }
}

But I can't guarantee that will work every time.

like image 79
Big Red Avatar answered Oct 23 '22 00:10

Big Red