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

The Archive Base Latest Questions

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

I presented a modal view where the presented view contains a tabbar controller.The view

  • 0

I presented a modal view where the presented view contains a tabbar controller.The view is displayed correctly,but when I add the dismissModalViewController to a button in tabbar viewController,it is not dismissing.Nothing is happening to the view.

How could I dismiss that modal view Controller?

  • 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-05T15:18:45+00:00Added an answer on June 5, 2026 at 3:18 pm

    The presenting view controller should be the one handling the dismissal of the modal view controller as well. You should use a delegate to notify the presenting view controller that it can dismiss the view controller it presented:

    In the modal view controller:

    @protocol SomeProtocol<NSObject>
    - (void)didFinishDoingWhatItNeedsToDo:(id)sender;
    @end
    
    @interface ModalViewController : UIViewController
    @property (nonatomic, weak) id <SomeProtocol> delegate;
    @end
    
    @implementation
    
    - (IBAction)buttonClicked:(id)sender {
    
        [self.delegate didFinishDoingWhatItNeedsToDo:self];
    
    }
    

    Then in the presenting view controller:

    @interface SomeObject : UIViewController <SomeDelegate>
    @end
    
    @implementation
    
    - (void)someMethod {
    
        ModalViewController *mvc = [[ModalViewController alloc] init];
        mvc.delegate = self;
    
        [self presentViewController:mvc animated:YES completion:nil];
    }
    
    - (void)didFinishDoingWhatItNeedsToDo:(id)sender {
    
        [self dismissViewControllerAnimated:YES completion:nil];
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

    I am having an issue dismissing a modal view controller on a certain edge
I have a view which is presented as a modal view controller which takes
here the following code is used to view the present modal view controller. [[self
I present a modal view controller for various UI settings in an iOS app.
I need to present a modal view controller before showing a split view controller.
I'm trying to present a modal view controller after selecting a contact and it
I am trying to present a modal view controller. I have read the documentation,
Is it possible to present a modal view controller in such a way that
In my application, I present a modal view with a navigation controller. After going
I have standard view controller acting as the delegate for a modal view controller

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.