Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7520471
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T02:04:34+00:00 2026-05-30T02:04:34+00:00

I want to have a navigation controller enrollment flow before my actual tab bar

  • 0

I want to have a navigation controller enrollment flow before my actual tab bar controller flow starts up. Right now I’ve created two different apps with two delegates.

I thought it might be possible to load my enrollment navcontroller xib flow first, then upon enrollment completion close it and load the tab bar controller.

I’m thinking this would be done in a single app delegate, but can’t quite come up with the code to call navigation controller flow first and when finished a button clicked would load the tabbar flow/xib

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-30T02:04:36+00:00Added an answer on May 30, 2026 at 2:04 am

    Turns out this isn’t too hard, just a few simple things to understand.

    First if you are creating a TabBar Controller, the TabBar Controller will always have to be the root view. Once you know this the next step is to see what view or xib the TabBar controller calls first.

    Once you know this go to the view or xib’s view controller code. In that code create function

    - (void) viewDidAppear:(BOOL)animated{
    }
    

    Within the above function you can inject the navigation view, but first you must tell the navigation view what the first view you want to be displayed, done like this:

    PersonalInfoVC *personalInfoVC = [[PersonalInfoVC alloc] initWithNibName:@"PersonalInfoVC" bundle:nil];
    UINavigationController *navController  = [[UINavigationController alloc]  
                                               initWithRootViewController:personalInfoVC];
    [self.tabBarController presentModalViewController:navController animated:YES];
    

    then in each view to call the next view use code like this:

    DepositDetailsVC *depositDetailsVC = [[DepositDetailsVC alloc] initWithNibName:@"DepositDetailsVC" bundle:nil];
    [self.navigationController pushViewController:depositDetailsVC animated:YES];
    

    Finally when you are done with the flow of the injected navigation controller run this code to go back to your original TabBar controller

    [self.navigationController dismissModalViewControllerAnimated:YES];
    

    Easy enough. 🙂

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a navigation controller with 2 UIBarButtonItems in my navigation bar. I want
I have a tab bar controller and each tab consist of a navigation controller.
I have a navigation controller which also has a table view. I want to
I want to have a TabBar controller inside a navigation controller. So that when
I have a navigation controller and when I place an image for navigation bar
I have a tab bar application that contains navigation views in 2 of its
My IOS application program have tableview in navigation controller secondview. I want to save
In an iPhone app I want to have a navigation button on the right
HI Everyone, I have a navigation bar with a navigation controller. In one of
I have a simple iPhone app based on a navigation controller. There are two

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.