Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

The FoldingTabBar is not displayed when using performSegue #73

Closed
resand opened this issue Jan 26, 2017 · 5 comments
Closed

The FoldingTabBar is not displayed when using performSegue #73

resand opened this issue Jan 26, 2017 · 5 comments

Comments

@resand
Copy link

resand commented Jan 26, 2017

When I perform a performSegue with code, for example in a login when redirecting to the login screen the tabs are not shown, only a black bar comes out; what is this about?
simulator screen shot 26 01 2017 1 42 49 p m

@knikaha
Copy link

knikaha commented Jan 31, 2017

yes you should use delegate

@lukeswitz
Copy link

lukeswitz commented Jan 31, 2017

 -(void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender {
    if ([segue.identifier isEqualToString:@"yourSegueNameHere"]) {
       
        // Get destination view
        LoginViewControllerName *vc2 = segue.destinationViewController;
    }

@lukeswitz
Copy link

You need a navigation controller in there to handle what you're trying to do. Here is some reference on view controller handling in Swift http://www.codingexplorer.com/segue-swift-view-controllers/

Hope that helps

@resand
Copy link
Author

resand commented Feb 1, 2017

The function I try to do is a login to a start view, if I enter the Home works correctly; But when I pass from login to homeView is that the bar is left in black....
:S

@Vodolazkyi
Copy link
Contributor

duplicate of #76

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants