I have a registration screen that is presented when my app first opened. When hitting register I want the app to send a request to the server and only after getting a response to trigger the unwind segue. But when I connect the "Register" button to the "Exit" green icon in storyboard and choose my unwind method, I guess that I set the segue to unwind when the button is tapped.
How do I prevent the segue from being performed on a tap?
I know that I can call the segue from the code by [self performSegueWithIdentifier:@"unwindFromRegisterToHome" sender:self];