Top "Uistoryboardsegue" questions

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

Prepare for Segue in Swift

I'm facing the error message: "UIStoryboardSegue does not have a member named 'identifier'" Here's the code causing the error if (…

ios swift uistoryboard uistoryboardsegue
Instead of push segue how to replace view controller (or remove from navigation stack)?

I have a small iPhone app, which uses a navigation controller to display 3 views (here fullscreen): First it displays a …

ios iphone objective-c segue uistoryboardsegue
How do I do a Fade/No transition between view controllers

Is it possible to do a fade in and fade out transition between View Controllers in Storyboard. Or without transition. …

objective-c ios uistoryboardsegue
Passing Data between View Controllers in Swift

I am trying to convert an app from Objective-C to Swift but I can't find how to pass data between …

ios swift uistoryboard uistoryboardsegue
Warning: Attempt to present * on * which is already presenting (null)

This is my first application for iOS. So I have a UIVIewController with a UITableView where I have integrated a …

ios swift uitableview uiviewcontroller uistoryboardsegue
push to another view controller without prepareForSegue

How can you push to another view controller without prepareForSegue? myClassVC *viewController = [myClassVC alloc]; UIStoryboardSegue *segue = [[UIStoryboardSegue alloc] initWithIdentifier:@"pushToMyVC" …

ios objective-c uiviewcontroller uistoryboardsegue pushviewcontroller
How do I create a segue that can be called from a button that is created programmatically?

In Swift I have a button created programmaticaly using: var button = UIBarButtonItem(title: "Tableau", style: .Plain, target: self, action: "tabBarTableauClicked") …

swift segue uistoryboard uistoryboardsegue
NSInvalidArgumentException - receiver has no segue with identifier

I have been trying everything for hours, and nothing's worked. I am trying to segue between two view controllers, from …

objective-c uiviewcontroller segue identifier uistoryboardsegue
Push segue from UITableViewCell to ViewController in Swift

I'm encountering problems with my UITableViewCells. I connected my UITableView to a API to populate my cells. Then I've created …

ios iphone uitableview swift uistoryboardsegue
To stop segue and show alert

Using iOS 5 storyboards, on a button I am performing a segue, what I want is to do validation on my …

iphone ios ios5 segue uistoryboardsegue