Top "Segue" questions

In iOS and Mac OSX, segue is a configurable object which specifies a transition from one scene to another.

Programmatically go back to previous ViewController in Swift

I send the user over to a page on a button click. This page is a UITableViewController. Now if the …

ios swift segue
IOS - How to segue programmatically using swift

I'm creating an app that uses the Facebook SDK to authenticate users. I'm trying to consolidate the facebook logic in …

ios iphone facebook swift segue
Creating a segue programmatically

I have a common UIViewController that all my UIViewsControllers extend to reuse some common operations. I want to set up …

ios objective-c segue
Perform Segue programmatically and pass parameters to the destination view

in my app I've a button that performs a segue programmatically: - (void)myButtonMethod { //execute segue programmatically [self performSegueWithIdentifier: @"MySegue" …

ios view parameters storyboard segue
How to perform Unwind segue programmatically?

Using storyboard this is very easy. You just drag the action to "Exit". But how should I call it from …

ios segue ios6
What's the difference between all the Selection Segues?

Show Show Detail Present Modally Popover presentation Custom What is the difference between them? I couldn't find any documentation on …

ios ios8 xcode6 segue
How to make a push segue when a UITableViewCell is selected

I have a list of effects in a table view. I have created a top right bar button which does …

ios objective-c uitableview segue
Prevent segue in prepareForSegue method?

Is it possible to cancel a segue in the prepareForSegue: method? I want to perform some check before the segue, …

ios cocoa-touch uiviewcontroller storyboard segue
How to present view controller from right to left in iOS using Swift

I am using presentViewController to present new screen let dashboardWorkout = DashboardWorkoutViewController() presentViewController(dashboardWorkout, animated: true, completion: nil) This presents new …

ios swift swift2 segue
How to segue back to a UIViewController that's already loaded?

I have a view on a storyboard the has a button to perform a certain action. To perform this action …

objective-c ios storyboard segue