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 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

Ask A Question

Stats

  • Questions 541k
  • Answers 541k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer Sounds like you might be a little bit over your… May 17, 2026 at 3:03 am
  • Editorial Team
    Editorial Team added an answer Instead of adding columns to Quartz tables, take a look… May 17, 2026 at 3:03 am
  • Editorial Team
    Editorial Team added an answer Try this: Select round((cast(133 as numeric(20,8))/ cast(150 as numeric(20,8))) *… May 17, 2026 at 3:03 am

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

Related Questions

I am trying to create a partial view I call ImageViewer. It will be
I am trying to adapt a simple WPF application to use the Model-View-ViewModel pattern.
To keep code out of the view when using the Model-View-View Model pattern (aka
Is there any way to create a ViewDataDictionary with a model and additional properties
Is there a way to include some aspx/ascx markup in a DLL and use
Is there anything wrong with the thread safety of this java code? Threads 1-10
I want to use the Model-View-Controller template while writing my Web App. The problem
I have an ASP.NET MVC web app whose controllers use WCF to call into
EDIT: This method actually works great and I asked it then found the solution
I just started using jqModal as I need support for nested modals. I'm noticing

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.