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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 5, 20262026-06-05T13:43:27+00:00 2026-06-05T13:43:27+00:00

I have a come across a piece of code to pop to a specific

  • 0

I have a come across a piece of code to pop to a specific viewcontroller in a navigation stack as below

for (UIViewController* viewController in self.navigationController.viewControllers) {
    if ([viewController isKindOfClass:[MyGroupViewController class]] ) {
        MyGroupViewController *groupViewController = (MyGroupViewController*)viewController;
        [self.navigationController popToViewController:groupViewController animated:YES];
    }
}

The objective is to pop to MyGroupViewController. But I am not understanding this line of code.

MyGroupViewController *groupViewController = (MyGroupViewController*)viewController;

Whats exactly happening here. I don’t think a new instance of MyGroupViewController is being created here.

  • 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-05T13:43:29+00:00Added an answer on June 5, 2026 at 1:43 pm
    //This for loop iterates through all the view controllers in navigation stack.   
    for (UIViewController* viewController in self.navigationController.viewControllers) {
    
        //This if condition checks whether the viewController's class is MyGroupViewController 
        // if true that means its the MyGroupViewController (which has been pushed at some point)
        if ([viewController isKindOfClass:[MyGroupViewController class]] ) {
    
            // Here viewController is a reference of UIViewController base class of MyGroupViewController 
            // but viewController holds MyGroupViewController  object so we can type cast it here
            MyGroupViewController *groupViewController = (MyGroupViewController*)viewController;
            [self.navigationController popToViewController:groupViewController animated:YES];
        }
    }
    

    Also you can do like this

    if ([viewController isKindOfClass:[MyGroupViewController class]] ) {
                [self.navigationController popToViewController:viewController  animated:YES];
     }
    

    Swift code

    //Itrate through all the view controllers in navigation stack
    for vc in self.navigationController!.viewControllers {
      // Check if the view controller is of MyGroupViewController type
      if let myGropupVC = vc as? MyGroupViewController {
        self.navigationController?.popToViewController(myGropupVC, animated: true)
      }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm trying to figure out someone else's code and have come across this piece
I have come across this piece of code (I'm trying to include all details
I have come across scripts that use: isset($_POST['submit']) as well as code that uses:
I am a beginner in Ada and I have come across a piece of
I'm looking at a piece of very old VB6, and have come across usages
In the current project I am working on I have come across a piece
I've recently come across this piece of JavaScript code: if (,>=,<=,<>,.indexOf(, + sCompOp +
I have come across this line of legacy code, which I am trying to
I'm reading through 'the ruby programming language' and have come across the following piece
I have come across a strange bug in my code and I cannot understand

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.