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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 22, 20262026-05-22T21:00:27+00:00 2026-05-22T21:00:27+00:00

I want to dismiss a FormSheetPresentation modal view controller when the user taps outside

  • 0

I want to dismiss a FormSheetPresentation modal view controller when the user taps outside the modal view…I have seen a bunch of apps doing this (ebay on ipad for example) but i cant figure out how since the underneath views are disabled from touches when modal views are displayed like this (are they presenting it as a popover perhaps?)…anyone have any suggestions?

  • 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-22T21:00:28+00:00Added an answer on May 22, 2026 at 9:00 pm

    I’m a year late, but this is pretty straightforward to do.

    Have your modal view controller attach a gesture recognizer to the view’s window:

    UITapGestureRecognizer *recognizer = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(handleTapBehind:)];
    
    [recognizer setNumberOfTapsRequired:1];
    recognizer.cancelsTouchesInView = NO; //So the user can still interact with controls in the modal view
    [self.view.window addGestureRecognizer:recognizer];
    [recognizer release];
    

    The handling code:

    - (void)handleTapBehind:(UITapGestureRecognizer *)sender
    {
        if (sender.state == UIGestureRecognizerStateEnded)
         {
           CGPoint location = [sender locationInView:nil]; //Passing nil gives us coordinates in the window
    
     //Then we convert the tap's location into the local view's coordinate system, and test to see if it's in or outside. If outside, dismiss the view.
    
            if (![self.view pointInside:[self.view convertPoint:location fromView:self.view.window] withEvent:nil]) 
            {
               // Remove the recognizer first so it's view.window is valid.
              [self.view.window removeGestureRecognizer:sender];
              [self dismissModalViewControllerAnimated:YES];
            }
         }
    }
    

    That’s about it. HIG be damned, this is a useful and often intuitive behavior.

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

Sidebar

Related Questions

I have a searchBar (with scopeBar) where I want to dismiss the keyboard when
Hello I have two UITextFields in my application, and want to dismiss the keyboard
I got one UITextField on my Modal view controller. When Done key is clicked,
The premise is remarkably simple: I want to display a modal view in an
I have a UIPopOverController and this is my code: [myPopOver presentPopoverFromRect:CGRectMake(20,5, 325, 600) inView:self.view
I want to assign the decimal variable "trans" to the double variable "this.Opacity". decimal
I want to dismiss keyboard by click dismiss button ,How to build a bar
I have a requirement where i am showing actionSheet but in case user does
I've got a view controller, call it VC1, that's a table view. When I
I'm trying to make a custom dialog to show a view in this dialog.

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.