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 559657
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T12:15:38+00:00 2026-05-13T12:15:38+00:00

Hey guys I need some help with this: I have two view controllers, let’s

  • 0

Hey guys I need some help with this:

I have two view controllers, let’s say:

  • FirstViewController (first) is inside a navigationviewcontroller
  • SecondViewController (second)

So in the first’s viewDidLoad method I have this:

SecondViewController *second = [[SecondViewController alloc] initWithNibName:...];

[self.addsubview:second.view];

I’ve done this cuz I want to make my custom tab bar with my custom buttons and colors.

I have this when I press one of the buttons of my custom “tab bar” (seconviewcontroller)

ConfiguracionViewController *conf = [[ConfiguracionViewController alloc] initWithNibName:@"ConfiguracionView" bundle:nil];

[self.navigationController pushViewController:conf animated:YES];
[conf release];

but because the second view controller is not pushed or modal presented in the first view controller I can’t acces the navigationController. I’ve tried also with this

[self.parentViewController.navigationController pushViewController:...];

But it didn’t work either.

Please help me out, I need to learn how to do that and sorry for my bad english.

Best Regards,
Carlos Vargas

  • 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-13T12:15:39+00:00Added an answer on May 13, 2026 at 12:15 pm

    First, shouldn’t you be adding the second view to the first view like this:

    [self.view addSubview:second.view];
    

    The property parentViewController will not work in this case since second is not part of a navigation hierarchy.

    Instead, you can make your own property that references the “parent” view controller:

    SecondViewController *second = [[SecondViewController alloc] initWithNibName:...];
    
    // set new property
    second.parentVC = self;
    
    [self.view addSubview:second.view];
    

    In SecondViewController.h you need to declare the instance variable and property for “parentVC” and in SecondViewController.m you need to synthesize the property.

    Then, you should be able to access the navigation controller and push a view controller from SecondViewController.m like this:

    [self.parentVC.navigationController pushViewController:...];
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 419k
  • Answers 419k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer So far I found only one suitable solution for this… May 15, 2026 at 10:19 am
  • Editorial Team
    Editorial Team added an answer Why not use a canvas element? It doesn't have to… May 15, 2026 at 10:19 am
  • Editorial Team
    Editorial Team added an answer forgive the untested C# syntax: var intArray = new StringBuilder();… May 15, 2026 at 10:19 am

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.