UIStoryboardSegue is the Cocoa Touch class for segues used in storyboards in iOS 5.0 and later.
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 uistoryboardsegueI 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 uistoryboardsegueIs it possible to do a fade in and fade out transition between View Controllers in Storyboard. Or without transition. …
objective-c ios uistoryboardsegueI am trying to convert an app from Objective-C to Swift but I can't find how to pass data between …
ios swift uistoryboard uistoryboardsegueThis is my first application for iOS. So I have a UIVIewController with a UITableView where I have integrated a …
ios swift uitableview uiviewcontroller uistoryboardsegueHow can you push to another view controller without prepareForSegue? myClassVC *viewController = [myClassVC alloc]; UIStoryboardSegue *segue = [[UIStoryboardSegue alloc] initWithIdentifier:@"pushToMyVC" …
ios objective-c uiviewcontroller uistoryboardsegue pushviewcontrollerIn Swift I have a button created programmaticaly using: var button = UIBarButtonItem(title: "Tableau", style: .Plain, target: self, action: "tabBarTableauClicked") …
swift segue uistoryboard uistoryboardsegueI 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 uistoryboardsegueI'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 uistoryboardsegueUsing 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