0
votes
2answers
109 views

dismissViewControllerAnimated breaks GUI

In my app i send a mail using MFMailComposeViewController. This viewController is pushed with [self presentViewController:mailer animated:false completion:nil]; from an viewController that is on ...
1
vote
2answers
192 views

Need help dismissing email composer screen in iOS

I have an app that allows the user to send a test email from their iPhone. My app calls a method to activate the compose mail function like this: -(void)displayComposerSheet { //set up a way to ...
1
vote
1answer
766 views

MFMailComposeViewController Not Working in Landscape

My app uses landscape mode. When trying to integrate MFMailComposeViewController that always worked for me in my other portrait mode apps, I came across the issue of mail controller not showing up at ...
0
votes
1answer
356 views

MFMailComposeViewController is not interactive

I'm using the following code in two view controllers; one, where it is triggered by pressing a button, and another, where it is triggered by tapping a table cell. In the first, it works fine. In the ...
3
votes
1answer
2k views

How to present a modal view controller on the iphone without a “current” view controller?

I'm trying to open the email view controller (MFMailComposeViewController), and everything I read suggests using presentModalViewController:animated:, which seems to need to be sent to a ...
8
votes
2answers
8k views

iPhone - MessageUI - framework not found Message

I want to be able to use the iPhones Mail.app inside my application so my users can send a share email without leaving the application. I know 3.0 made this possible. I have added the framework ...
2
votes
4answers
4k views

presentModalViewController crashes my app

It's one of the simplest things to do, I know. But I've been banging my head against this for days. I've done it plenty of times in the past, but for some reason trying to present a modal view ...