uistoryboardsegue Questions

19

This is my first application for iOS. So I have a UIVIewController with a UITableView where I have integrated a UISearchBar and a UISearchController in order to filter TableCells to display overr...
Stagehand asked 21/9, 2015 at 13:32

12

Is it possible to do a fade in and fade out transition between View Controllers in Storyboard. Or without transition. If it's possible, what's the code for it?
Lisabethlisan asked 9/6, 2012 at 14:45

5

Solved

I want to pass my data from one ViewController to another VC on VC dismiss. Is it possible? I've tried the next method and no success: On button click: self.dismiss(animated: true) { let story...
Truditrudie asked 30/4, 2017 at 13:0

6

Solved

Pardon me for beginner's question. I know I can switch to another screen (ViewController) like this self.performSegueWithIdentifier ("SecondViewController", sender: self) but I can't seem to fin...
Hyetology asked 6/10, 2016 at 19:37

3

Solved

I was running my iPhone app just fine yesterday. Today I'm getting this crash: *** Terminating app due to uncaught exception 'NSGenericException', reason: 'This coder requires that replaced objects...
Lipps asked 28/3, 2019 at 10:32

9

Solved

This might be a very simple question but didn't yield any results when searching for it so here it is... I am trying to work out a way to check if a certain view controller can perform a segue wit...
Capitular asked 8/3, 2012 at 23:6

3

Solved

I'm working on an app, and need to pass data between view and containerView. I need to send data and receive data from both Views. Let me explain better: I can change the Label Master (Touch the ...
Rags asked 18/12, 2015 at 3:51

9

Solved

I'm encountering problems with my UITableViewCells. I connected my UITableView to a API to populate my cells. Then I've created a function which grabs the indexPath.row to identify which JSON-obj...
Dyne asked 4/2, 2015 at 14:32

2

I have a custom UIStoryboardSegue that works as desired in iOS12.*. One of the destination view controller is a UITabbarController: for each tab, I have a controller embedded in a navigation contr...
Blandishments asked 13/10, 2019 at 2:6

4

Solved

In the main view of my app I have a table view and two prototype cells. I have configured the segues for each cell using the storyboard. In the view controller I override prepareForSegue to pass in...
Gabriello asked 13/6, 2015 at 21:7

7

Solved

I created a table view and from there let say a user pressed a cell it will go to the detailItemView , but the only problem right now is that whenever a user is in detailItemView there is no back b...
Hamulus asked 19/5, 2015 at 13:12

3

I am using storyboards in my iOS. The first screen is the login screen. When a user logs out or gets logged out, he may be on a screen in a deep hierarchy. For example: login view controller => m...
Joliejoliet asked 22/10, 2012 at 16:56

2

Solved

I want to list the outgoing segues from a UIViewController, as described in Programmatically enumerate outgoing Segues for a UIViewController, but in Swift. (Swift 2, Xcode 7, iOS8+). I can do ov...
Longship asked 28/1, 2016 at 11:25

4

Solved

I'm updating an app to use universal storyboards. I've created a popover segue to a new viewcontroller using interface builder by dragging from a button to my new viewcontroller and selecting 'Pres...
Insurgency asked 1/11, 2015 at 23:59

2

Solved

How do I add a ViewController before a TabBarController in Swift? I am using Parse to make a custom login in the ViewController which would lead to the TabBarController... Help would be appreciated...
Rhetic asked 24/5, 2015 at 0:58

3

I have a Show type UIStoryboardSegue with abSegue identifier. It navigates from UIViewController A to B. In the entire application I use custom UINavigationController which works perfectly fine, bu...

10

Solved

I'm facing the error message: "UIStoryboardSegue does not have a member named 'identifier'" Here's the code causing the error if (segue.identifier == "Load View") { // pass data to next view }...
Juxon asked 4/6, 2014 at 14:49

1

I'm trying to create SwiftUI custom segue animation, like this I try to chain the animation to Destination but no use, it just animates inside the contents of Destination after presentation an...
Constanceconstancia asked 21/7, 2019 at 10:53

14

Solved

I have a small iPhone app, which uses a navigation controller to display 3 views (here fullscreen): First it displays a list of social networks (Facebook, Google+, etc.): Then it displays an ...
Selfsealing asked 28/1, 2014 at 19:19

3

Solved

I have a button that goes to another view. I want to perform some code before the segue moves. The problem I am facing is the segue goes to the other page before the code has a chance to finish. So...
Leninism asked 27/5, 2016 at 1:39

5

I have an UICollectionView and when the user presses a cell, I present another view controller in a UINavigationController modally using a storyboard. - (void)collectionView:(UICollectionView *)co...
Hemphill asked 7/6, 2015 at 15:35

4

Solved

I want to Show (e.g. push) segues in my storyboard, to connect my viewcontrollers and my navigation controller. Then the navigation bars on the viewcontrollers will show correctly. For example: Wit...
Brodeur asked 15/10, 2015 at 11:25

7

Solved

I am trying to convert an app from Objective-C to Swift but I can't find how to pass data between views using Swift. My Objective-C code is UIStoryboard *storyBoard = [UIStoryboard storyboardWithN...
Pleven asked 14/6, 2014 at 17:49

3

Solved

In my storyboard, I have a view as a splash screen. In this view, I already have a button like "Open Application" that is opening the menu view with a modal segue. But I also want screen to perform...

4

Solved

Problem Summary My mainVC --> second VC transtion appears to run twice. However, what's odd is that the second VC's viewDidLoad only runs once. This is the only transition in my project that has t...
Trodden asked 29/8, 2015 at 16:49

© 2022 - 2025 — McMap. All rights reserved.