Top "Uistoryboardsegue" questions

UIStoryboardSegue is the Cocoa Touch class for segues used in storyboards in iOS 5.0 and later.

prepareForSegue is not getting called when I click on a button without using performSegueWithIdentifier

Based on the Stanford iOS course I am playing with modal view controllers. In the demo they have a button …

ios iphone objective-c segue uistoryboardsegue
Does anyone know what the new Exit icon is used for when editing storyboards using Xcode 4.5?

Right-clicking the Exit icon yields an empty window. Can't Ctrl-drag a connection to any IB elements or corresponding source files. …

interface-builder ios6 uistoryboard uistoryboardsegue xcode4.5
Pushing to a Detail View from a Table View Cell using Xcode Storyboard

I have a table view inside a View Controller. I can populate all my information inside the table view. However …

objective-c ios uiviewcontroller uistoryboardsegue uitableview
Passing variables between view controllers

I am using this function to switch between views in Xcode 4.3. [self performSegueWithIdentifier:@"NextView" sender:self]; I would like to …

ios properties uiviewcontroller uistoryboard uistoryboardsegue
Segues initiated directly from view controllers warning in storyboard xcode

Hi I have created button programmatically and I connected it to another view, but I got segue warning that I …

ios objective-c storyboard segue uistoryboardsegue
Xcode, where to assign the segue identifier

Pardon me for beginner's question. I know I can switch to another screen (ViewController) like this self.performSegueWithIdentifier ("SecondViewController", sender: …

ios swift xcode uistoryboard uistoryboardsegue
'Receiver (<ViewController>) has no segue with identifier 'addSegue'

I have a navigation controller that has a segue links between them called "addSegue". When I click on the tableView …

ios objective-c iphone swift uistoryboardsegue
iOs Segue animation left to right (horizontal)

I'm nearly a newbie to Xcode 4. There's a way to add to a segue a custom transition animation that it …

ios cocoa-touch storyboard transition uistoryboardsegue
Added navigation bar but there is no back button?

I created a table view and from there let say a user pressed a cell it will go to the …

ios uitableview swift segue uistoryboardsegue
performSegueWithIdentifier in swift

If I have this Objective C code: [self performSegueWithIdentifier:@"push" sender:self]; and - (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)…

swift uistoryboardsegue