Lets say I have two controller A & B and 1 MFMessageComposeViewController. I am performing these operations

A-> presentModalViewController -> B

B-> presentModalViewController -> MFMessageComposeViewController object

So on message compose didFinishWithResult delegate I want to go back to A Controller not on B.

I have tried several steps like 2 times dismissModalViewControllerAnimated in delegate and calling A controller directly from delegate but nothing its working. Everytime it dismisses only single time and it remains on B controller.

On cancel/send i want to go back to A controller.

link|improve this question

Since B is modal view controller you need to dismiss the MFMessageComposeViewController, wait for a second before you can dismiss view controller on B. It will help if you add code on how you dismiss B and MFMessageComposeViewController. – Praveen S Jul 28 '11 at 10:46
feedback

2 Answers

up vote 3 down vote accepted

As you mentioned, dismiss it twice. First with, [self dismissModalViewControllerAnimated:NO];

Then, [self dismissModalViewControllerAnimated:YES];

link|improve this answer
Great Man.... I was messing with this problem since last 1 hour... tried so many complex ways.... and your answer was so simple and accurate. Thanks – Tariq- iPHONE Programmer Jul 28 '11 at 10:54
feedback

Method 1: In your B controller set a flag when you present to MFMessageComposeViewController. In your B's view will appear check if the the flag is set then dismiss B and unset the flag.

Method 2: dismiss B just before presenting MFMessageComposeViewController

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.