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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 16, 20262026-06-16T23:00:58+00:00 2026-06-16T23:00:58+00:00

In my app, I presented a modal view. In modal view, I taken a

  • 0

In my app, I presented a modal view. In modal view, I taken a view(Extraview) which contains a table view & a button.

from this button, i open a popview which contains a view(LeftsideView).

-(IBAction)popOverBtnPressed:(id)sender
{
    LeftSideVCViewController *popUp=[[LeftSideVCViewController alloc] initWithNibName:@"LeftSideVCViewController" bundle:nil];



    popView = [[UIPopoverController alloc]initWithContentViewController:popUp];
    popView.delegate =self;

    [popView setPopoverContentSize:CGSizeMake(300, 700)];
    [popView presentPopoverFromRect:CGRectMake(150,30,20,40) inView:self.view permittedArrowDirections:UIPopoverArrowDirectionUp animated:YES];

}

enter image description here
enter image description here

Now, I want to dismiss modal view on the selection of table row of leftside view.
How can i do this.

  • 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-16T23:00:59+00:00Added an answer on June 16, 2026 at 11:00 pm

    in your Issue Presenting PopOver is a different Class and dismiss Method is a Different Class So you need to Implementing NSNotificationCenter like Bellow:-

    add Notification at Your PopOVer Created Class in your ViewDidLoad Method:-

    - (void)viewDidLoad
    {
    
        [[NSNotificationCenter defaultCenter] addObserver:self
                                                 selector:@selector(dismisPopoverInnerPageTeam:)
                                                     name:@"InnerPop"
                                                   object:nil];
    
    
        [super viewDidLoad];
    
    }
    
    -(void)dismisPopoverInnerPageTeam:(NSNotification *)notification {
    
        [yourPopOver dismissPopoverAnimated:YES];
    }
    

    Now you just need to call this method From your LeftSideVCViewController class UITableView Delegate method didSelectRowAtIndexPath like:-

    - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
    {
         [[NSNotificationCenter defaultCenter] postNotificationName:@"InnerPop" object:self];
    
    }
    

    Hope it’s Helps you:)

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

Sidebar

Related Questions

I have a view which is presented as a modal view controller which takes
I present a modal table view within a navigation view with a Back button.
I present a modal view controller for various UI settings in an iOS app.
I have an app that presents Table View of different files. I have it
(I am developing an app that presents chat messages in a table. But, this
I'm trying to build an app that features a button on the first view,
I present a modal view on a button Tapped. In that view, I made
I have a splitView in my app.I have a presented a Modal on click
Situation: In have lot of view controllers in my app and they are presented
I have a modal view controller whose view comes from a XIB. I want

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.