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

  • Home
  • SEARCH
  • 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 1076289
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T21:23:35+00:00 2026-05-16T21:23:35+00:00

Is there a way to call code when a modal view is finished dismissing?

  • 0

Is there a way to call code when a modal view is finished dismissing?

EDIT:

I’m sorry, I didn’t clarify earlier. I’m trying to dismiss a UIImagePickerController and then show a MFMailComposeViewController and attach the image data to the email. When I try to call

[self presentModalViewController: mailController]

right after

[self dismissModalViewController];

I get errors and such.

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

    You use a delegate pattern for the modal view to inform whoever presented it when it’s finished.

    MyModalViewController.h:

    @protocol MyModalViewControllerDelegate;
    
    @interface MyModalViewController : UIViewController
    {
        id<MyModalViewControllerDelegate> delegate;
    }
    
    @property (nonatomic, assign) id<MyModalViewControllerDelegate> delegate;
    
    @end
    
    
    @protocol MyModalViewControllerDelegate
    - (void)myModalViewControllerFinished:(MyModalViewController*)myModalViewController;
    @end
    

    MyModalViewController.m:

    @synthesize delegate;
    
    // Call this method when the modal view is finished
    - (void)dismissSelf
    {
        [delegate myModalViewControllerFinished:self];
    }
    

    ParentViewController.h:

    #import "MyModalViewController.h"
    
    @interface ParentViewController : UIViewController <MyModalViewControllerDelegate>
    {
    }
    

    ParentViewController.m:

    - (void)presentMyModalViewController
    {
        MyModalViewController* myModalViewController = [[MyModalViewController alloc] initWithNibName:@"MyModalView" bundle:nil];
        myModalViewController.delegate = self;
        [self presentModalViewController:myModalViewController animated:YES];
        [myModalViewController release];
    }
    
    - (void)myModalViewControllerFinished:(MyModalViewController*)myModalViewController
    {
        [self dismissModalViewControllerAnimated:YES];
    }
    

    EDIT:

    I haven’t used UIImagePickerController, but looking at the docs, it looks like you already have most of the code done for you, as there is an existing UIImagePickerControllerDelegate class that has three different “dismissal” delegate callbacks (although one is deprecated). So you should make your ParentViewController class (whatever that is) implement the UIImagePickerControllerDelegate pattern and then implement those methods. While each method will do something different (since you have to handle when the user actually selects an image, or if they cancel), they each will do the same thing at the end: call dismissModalViewControllerAnimated: to dismiss the picker.

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

Sidebar

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.