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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T06:26:50+00:00 2026-06-11T06:26:50+00:00

I have a bunch of UIViewController s subclasses (let’s call them MainForm , DetailForm

  • 0

I have a bunch of UIViewControllers subclasses (let’s call them MainForm, DetailForm, MoreMinorDetails). Basically the idea is that AppDelegate class instantiates MainForm, user presses some type of button on MainForm and DetailForm comes up. Then on a button on the DetailForm launches MoreMinorDetails. And of course, I should be able to go back down to the MainForm.

Note that there aren’t any UINavigationController objects anywhere in sight.
What is the accepted pattern to move between UIViewControllers in a manner described above?

Or am I going about it in the wrong way?
I’ll be happy with either XCode or MonoTouch based explanation.

  • 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-06-11T06:26:52+00:00Added an answer on June 11, 2026 at 6:26 am

    You can use a UINavigationController and hide the navigation bar:

    self.navigationController.navigationBar.hidden = YES;
    

    Then in your button’s action just push the next view controller:

    -(void)buttonAction:(id)sender
    {
        NextViewController *nextViewController = [[NextViewController alloc] init];
        [self.navigationController pushViewController:nextViewController animated:YES];
    }
    

    To go back, use

    -(void)goBack
    {
        [self.navigationController popViewControllerAnimated:YES];
    }
    

    To go to a certain view controller (you have to know exactly when it was pushed onto the navigation controller’s stack):

    -(void)goToViewController
    {
        [self.navigationController popToViewController:[self.navigationController.viewControllers objectAtIndex:1] animated:YES];
    }
    

    Or to pop to your root view controller

    [self.navigationController popToRootViewControllerAnimated:YES];
    

    This way, you will obtain the UINavigationController‘s functionality and keep all the space in the view.

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

Sidebar

Related Questions

I have a bunch of buttons that have a tapGestureRecognizer linked to them, and
i have a UIViewController class that do the following: detect movement. array a bunch
I have a UIViewController subclass that loads a bunch of images for each cell
Let's suppose that I have WebDAV-enabled server, where I have bunch of Office documents.
I have a bunch of html files that come with my app and are
I have a bunch of code in a routine that looks a bit like
I have a bunch of strings that are dependent on static dictionaries and each
I have bunch of objects that return a DOM-tree that I then use to
I have bunch of python-projects with untrusted WSGI-apps inside them. I need to run
I have a header ( .h ) file that I've defined a bunch of

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.